@mariodefe/sap-datasphere-mcp 1.0.10 → 1.0.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG_v1.0.10.md +30 -6
- package/package.json +2 -2
package/CHANGELOG_v1.0.10.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
# Changelog - v1.0.10 (
|
|
1
|
+
# Changelog - v1.0.10 (Dual Package Hotfix)
|
|
2
2
|
|
|
3
|
-
**Release Date:** 2025-
|
|
3
|
+
**Release Date:** 2025-12-16
|
|
4
4
|
|
|
5
|
-
## 🐛 Critical npm
|
|
5
|
+
## 🐛 Critical Package Fixes (npm + PyPI)
|
|
6
6
|
|
|
7
|
-
### Issue
|
|
7
|
+
### Issue 1: npm Package - Invalid Python Dependency
|
|
8
8
|
Fixed a critical npm package configuration issue that prevented installation.
|
|
9
9
|
|
|
10
10
|
**Problem:**
|
|
@@ -15,13 +15,37 @@ Fixed a critical npm package configuration issue that prevented installation.
|
|
|
15
15
|
**Root Cause:**
|
|
16
16
|
The `peerDependencies` field incorrectly listed Python as an npm dependency. Python is a system requirement, not an npm package.
|
|
17
17
|
|
|
18
|
-
|
|
19
|
-
|
|
18
|
+
---
|
|
19
|
+
|
|
20
|
+
### Issue 2: PyPI Package - Missing tool_descriptions.py Module
|
|
21
|
+
|
|
22
|
+
Python package v1.0.9 was missing the `tool_descriptions.py` module, causing import errors.
|
|
23
|
+
|
|
24
|
+
**Problem:**
|
|
25
|
+
- Package installed successfully but failed at runtime
|
|
26
|
+
- Error: `ModuleNotFoundError: No module named 'tool_descriptions'`
|
|
27
|
+
- Only `sap_datasphere_mcp_server.py` was included, missing dependency
|
|
28
|
+
|
|
29
|
+
**Root Cause:**
|
|
30
|
+
[pyproject.toml](pyproject.toml:89-91) only specified `sap_datasphere_mcp_server` in `py-modules`, missing `tool_descriptions` which is imported by the server.
|
|
31
|
+
|
|
32
|
+
**npm Fix:**
|
|
33
|
+
- Removed invalid `peerDependencies` field from [package.json](package.json:42-47)
|
|
20
34
|
- Python requirement now documented only in:
|
|
21
35
|
- `engines` field (metadata only, not enforced by npm)
|
|
22
36
|
- README.md (system requirements section)
|
|
23
37
|
- Wrapper script error messages (runtime validation)
|
|
24
38
|
|
|
39
|
+
**PyPI Fix:**
|
|
40
|
+
- Added `tool_descriptions` to `py-modules` list in [pyproject.toml](pyproject.toml:91)
|
|
41
|
+
```diff
|
|
42
|
+
[tool.setuptools]
|
|
43
|
+
packages = ["auth"]
|
|
44
|
+
-py-modules = ["sap_datasphere_mcp_server"]
|
|
45
|
+
+py-modules = ["sap_datasphere_mcp_server", "tool_descriptions"]
|
|
46
|
+
```
|
|
47
|
+
- Rebuilt package with all required modules included
|
|
48
|
+
|
|
25
49
|
### Changes
|
|
26
50
|
|
|
27
51
|
**package.json:**
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mariodefe/sap-datasphere-mcp",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Model Context Protocol server for SAP Datasphere integration with
|
|
3
|
+
"version": "1.0.12",
|
|
4
|
+
"description": "Model Context Protocol server for SAP Datasphere integration with 48 tools including Task Management (run_task_chain, get_task_log, get_task_history) and Smart Query",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"sap",
|
|
7
7
|
"datasphere",
|