@ui5/mcp-server 0.1.5 → 0.2.0
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.md +34 -0
- package/README.md +2 -1
- package/lib/registerTools.d.ts +64 -30
- package/lib/registerTools.js +15 -9
- package/lib/registerTools.js.map +1 -1
- package/lib/server.js +1 -0
- package/lib/server.js.map +1 -1
- package/lib/tools/create_integration_card/schema.d.ts +8 -1
- package/lib/tools/create_ui5_app/schema.d.ts +11 -31
- package/lib/tools/get_api_reference/schema.d.ts +1 -7
- package/lib/tools/get_project_info/schema.d.ts +14 -58
- package/lib/tools/get_typescript_conversion_guidelines/index.d.ts +3 -0
- package/lib/tools/get_typescript_conversion_guidelines/index.js +29 -0
- package/lib/tools/get_typescript_conversion_guidelines/index.js.map +1 -0
- package/lib/tools/get_typescript_conversion_guidelines/typescriptConversionGuidelines.d.ts +1 -0
- package/lib/tools/get_typescript_conversion_guidelines/typescriptConversionGuidelines.js +66 -0
- package/lib/tools/get_typescript_conversion_guidelines/typescriptConversionGuidelines.js.map +1 -0
- package/lib/tools/get_version_info/schema.d.ts +13 -47
- package/lib/tools/run_ui5_linter/index.js +0 -3
- package/lib/tools/run_ui5_linter/index.js.map +1 -1
- package/lib/tools/run_ui5_linter/schema.d.ts +18 -276
- package/lib/utils/ui5Framework.d.ts +4 -1
- package/npm-shrinkwrap.json +660 -148
- package/package.json +12 -12
- package/resources/template-js/webapp/view/Main.view.xml +2 -2
- package/resources/template-ts/webapp/view/Main.view.xml +2 -2
- package/resources/typescript_conversion_guidelines.md +990 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ui5/mcp-server",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "MCP server for UI5 application development",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "SAP SE",
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
".reuse/**"
|
|
65
65
|
],
|
|
66
66
|
"engines": {
|
|
67
|
-
"node": "^20.
|
|
67
|
+
"node": "^20.17.0 || >=22.9.0",
|
|
68
68
|
"npm": ">= 8"
|
|
69
69
|
},
|
|
70
70
|
"exports": {
|
|
@@ -75,27 +75,27 @@
|
|
|
75
75
|
}
|
|
76
76
|
},
|
|
77
77
|
"dependencies": {
|
|
78
|
-
"@modelcontextprotocol/sdk": "^1.
|
|
78
|
+
"@modelcontextprotocol/sdk": "^1.24.3",
|
|
79
79
|
"@ui5/linter": "^1.20.5",
|
|
80
80
|
"@ui5/logger": "^4.0.2",
|
|
81
|
-
"@ui5/project": "^4.0.
|
|
81
|
+
"@ui5/project": "^4.0.9",
|
|
82
82
|
"async-mutex": "^0.5.0",
|
|
83
83
|
"ejs": "^3.1.10",
|
|
84
|
-
"execa": "^9.6.
|
|
84
|
+
"execa": "^9.6.1",
|
|
85
85
|
"fast-xml-parser": "^5.3.2",
|
|
86
86
|
"globby": "^16.0.0",
|
|
87
87
|
"lockfile": "^1.0.4",
|
|
88
|
-
"make-fetch-happen": "^
|
|
88
|
+
"make-fetch-happen": "^15.0.3",
|
|
89
89
|
"semver": "^7.7.3",
|
|
90
|
-
"zod": "^
|
|
90
|
+
"zod": "^4.1.13"
|
|
91
91
|
},
|
|
92
92
|
"devDependencies": {
|
|
93
|
-
"@commitlint/cli": "^20.
|
|
94
|
-
"@commitlint/config-conventional": "^20.
|
|
93
|
+
"@commitlint/cli": "^20.2.0",
|
|
94
|
+
"@commitlint/config-conventional": "^20.2.0",
|
|
95
95
|
"@eslint/js": "^9.39.1",
|
|
96
96
|
"@istanbuljs/esm-loader-hook": "^0.3.0",
|
|
97
97
|
"@istanbuljs/nyc-config-typescript": "^1.0.2",
|
|
98
|
-
"@modelcontextprotocol/inspector": "^0.17.
|
|
98
|
+
"@modelcontextprotocol/inspector": "^0.17.5",
|
|
99
99
|
"@stylistic/eslint-plugin": "^5.6.1",
|
|
100
100
|
"@types/ejs": "^3.1.5",
|
|
101
101
|
"@types/make-fetch-happen": "^10.0.4",
|
|
@@ -114,9 +114,9 @@
|
|
|
114
114
|
"nyc": "^17.1.0",
|
|
115
115
|
"rimraf": "^6.1.2",
|
|
116
116
|
"sinon": "^21.0.0",
|
|
117
|
-
"tsx": "^4.
|
|
117
|
+
"tsx": "^4.21.0",
|
|
118
118
|
"typescript": "^5.9.3",
|
|
119
|
-
"typescript-eslint": "^8.
|
|
119
|
+
"typescript-eslint": "^8.49.0",
|
|
120
120
|
"yauzl-promise": "^4.0.0"
|
|
121
121
|
}
|
|
122
122
|
}
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
<Button
|
|
25
25
|
id="helloButton"
|
|
26
26
|
text="{formatter: 'formatter.formatValue', path: 'i18n>btnText'}"
|
|
27
|
-
press="sayHello" />
|
|
27
|
+
press=".sayHello" />
|
|
28
28
|
</additionalContent>
|
|
29
29
|
</IllustratedMessage>
|
|
30
30
|
</content>
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
<Button
|
|
41
41
|
id="helloButton"
|
|
42
42
|
text="{formatter: 'formatter.formatValue', path: 'i18n>btnText'}"
|
|
43
|
-
press="sayHello" />
|
|
43
|
+
press=".sayHello" />
|
|
44
44
|
</buttons>
|
|
45
45
|
</MessagePage>
|
|
46
46
|
<% } %><% } else { %>
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
<Button
|
|
25
25
|
id="helloButton"
|
|
26
26
|
text="{formatter: 'formatter.formatValue', path: 'i18n>btnText'}"
|
|
27
|
-
press="sayHello" />
|
|
27
|
+
press=".sayHello" />
|
|
28
28
|
</additionalContent>
|
|
29
29
|
</IllustratedMessage>
|
|
30
30
|
</content>
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
<Button
|
|
41
41
|
id="helloButton"
|
|
42
42
|
text="{formatter: 'formatter.formatValue', path: 'i18n>btnText'}"
|
|
43
|
-
press="sayHello" />
|
|
43
|
+
press=".sayHello" />
|
|
44
44
|
</buttons>
|
|
45
45
|
</MessagePage>
|
|
46
46
|
<% } %><% } else { %>
|