sap-abap-mcp 0.4.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 +190 -0
- package/LICENSE +202 -0
- package/README.md +318 -0
- package/out/extension.js +46 -0
- package/out/mcp-server.js +117 -0
- package/package.json +153 -0
package/package.json
ADDED
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "sap-abap-mcp",
|
|
3
|
+
"displayName": "SAP ABAP MCP",
|
|
4
|
+
"description": "AI-powered ABAP development. Registers an MCP server that lets Copilot Chat (and other MCP clients) read, search, and edit ABAP objects on any on-premise SAP system via the ADT REST API.",
|
|
5
|
+
"version": "0.4.0",
|
|
6
|
+
"publisher": "lom-ali-imadaev",
|
|
7
|
+
"license": "Apache-2.0",
|
|
8
|
+
"bin": {
|
|
9
|
+
"sap-abap-mcp": "out/mcp-server.js"
|
|
10
|
+
},
|
|
11
|
+
"files": [
|
|
12
|
+
"out/extension.js",
|
|
13
|
+
"out/mcp-server.js",
|
|
14
|
+
"CHANGELOG.md",
|
|
15
|
+
"LICENSE"
|
|
16
|
+
],
|
|
17
|
+
"engines": {
|
|
18
|
+
"vscode": "^1.99.0",
|
|
19
|
+
"node": ">=18"
|
|
20
|
+
},
|
|
21
|
+
"categories": [
|
|
22
|
+
"AI",
|
|
23
|
+
"Other"
|
|
24
|
+
],
|
|
25
|
+
"keywords": [
|
|
26
|
+
"sap",
|
|
27
|
+
"abap",
|
|
28
|
+
"mcp",
|
|
29
|
+
"copilot",
|
|
30
|
+
"adt",
|
|
31
|
+
"model-context-protocol"
|
|
32
|
+
],
|
|
33
|
+
"repository": {
|
|
34
|
+
"type": "git",
|
|
35
|
+
"url": "git+https://github.com/Lomtech/sap-abap-vscode-mcp.git"
|
|
36
|
+
},
|
|
37
|
+
"bugs": {
|
|
38
|
+
"url": "https://github.com/Lomtech/sap-abap-vscode-mcp/issues"
|
|
39
|
+
},
|
|
40
|
+
"homepage": "https://github.com/Lomtech/sap-abap-vscode-mcp#readme",
|
|
41
|
+
"main": "./out/extension.js",
|
|
42
|
+
"activationEvents": [
|
|
43
|
+
"onStartupFinished"
|
|
44
|
+
],
|
|
45
|
+
"contributes": {
|
|
46
|
+
"commands": [
|
|
47
|
+
{
|
|
48
|
+
"command": "sapAbapMcp.connect",
|
|
49
|
+
"title": "SAP ABAP: Connect to System...",
|
|
50
|
+
"category": "SAP ABAP"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"command": "sapAbapMcp.testConnection",
|
|
54
|
+
"title": "SAP ABAP: Test Connection",
|
|
55
|
+
"category": "SAP ABAP"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"command": "sapAbapMcp.disconnect",
|
|
59
|
+
"title": "SAP ABAP: Disconnect (clear credentials)",
|
|
60
|
+
"category": "SAP ABAP"
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"command": "sapAbapMcp.toggleReadOnly",
|
|
64
|
+
"title": "SAP ABAP: Toggle Read-Only Mode",
|
|
65
|
+
"category": "SAP ABAP"
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"command": "sapAbapMcp.showStatus",
|
|
69
|
+
"title": "SAP ABAP: Show Connection Status",
|
|
70
|
+
"category": "SAP ABAP"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"command": "sapAbapMcp.syncToClaude",
|
|
74
|
+
"title": "SAP ABAP: Register MCP with Claude Code & Desktop",
|
|
75
|
+
"category": "SAP ABAP"
|
|
76
|
+
}
|
|
77
|
+
],
|
|
78
|
+
"configuration": {
|
|
79
|
+
"title": "SAP ABAP MCP",
|
|
80
|
+
"properties": {
|
|
81
|
+
"sapAbapMcp.host": {
|
|
82
|
+
"type": "string",
|
|
83
|
+
"default": "",
|
|
84
|
+
"description": "Base URL of the SAP system (e.g. https://sap.example.com:44300). Use HTTPS.",
|
|
85
|
+
"scope": "machine"
|
|
86
|
+
},
|
|
87
|
+
"sapAbapMcp.client": {
|
|
88
|
+
"type": "string",
|
|
89
|
+
"default": "100",
|
|
90
|
+
"description": "SAP client / mandant",
|
|
91
|
+
"scope": "machine"
|
|
92
|
+
},
|
|
93
|
+
"sapAbapMcp.user": {
|
|
94
|
+
"type": "string",
|
|
95
|
+
"default": "",
|
|
96
|
+
"description": "ABAP user name",
|
|
97
|
+
"scope": "machine"
|
|
98
|
+
},
|
|
99
|
+
"sapAbapMcp.language": {
|
|
100
|
+
"type": "string",
|
|
101
|
+
"default": "EN",
|
|
102
|
+
"description": "Logon language (EN, DE, ...)",
|
|
103
|
+
"scope": "machine"
|
|
104
|
+
},
|
|
105
|
+
"sapAbapMcp.verifySsl": {
|
|
106
|
+
"type": "boolean",
|
|
107
|
+
"default": false,
|
|
108
|
+
"description": "Verify TLS certificates. Most on-prem SAP systems use self-signed certs — keep this off unless your system has a trusted cert chain.",
|
|
109
|
+
"scope": "machine"
|
|
110
|
+
},
|
|
111
|
+
"sapAbapMcp.readOnly": {
|
|
112
|
+
"type": "boolean",
|
|
113
|
+
"default": false,
|
|
114
|
+
"description": "Read-only mode. When enabled, write/create/delete/activate tools are hidden from the MCP client.",
|
|
115
|
+
"scope": "machine"
|
|
116
|
+
},
|
|
117
|
+
"sapAbapMcp.timeout": {
|
|
118
|
+
"type": "number",
|
|
119
|
+
"default": 30,
|
|
120
|
+
"description": "HTTP timeout in seconds.",
|
|
121
|
+
"minimum": 5,
|
|
122
|
+
"maximum": 600,
|
|
123
|
+
"scope": "machine"
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
},
|
|
127
|
+
"mcpServerDefinitionProviders": [
|
|
128
|
+
{
|
|
129
|
+
"id": "sapAbapMcp.provider",
|
|
130
|
+
"label": "SAP ABAP MCP"
|
|
131
|
+
}
|
|
132
|
+
]
|
|
133
|
+
},
|
|
134
|
+
"scripts": {
|
|
135
|
+
"typecheck": "tsc -p . --noEmit",
|
|
136
|
+
"compile": "node esbuild.mjs",
|
|
137
|
+
"watch": "tsc -p . --watch --noEmit",
|
|
138
|
+
"package": "vsce package --no-yarn",
|
|
139
|
+
"test": "node tests/smoke.mjs",
|
|
140
|
+
"vscode:prepublish": "npm run typecheck && npm run compile"
|
|
141
|
+
},
|
|
142
|
+
"dependencies": {
|
|
143
|
+
"@modelcontextprotocol/sdk": "^1.0.4",
|
|
144
|
+
"fast-xml-parser": "^4.5.0"
|
|
145
|
+
},
|
|
146
|
+
"devDependencies": {
|
|
147
|
+
"@types/node": "^20.11.0",
|
|
148
|
+
"@types/vscode": "^1.99.0",
|
|
149
|
+
"@vscode/vsce": "^3.2.0",
|
|
150
|
+
"esbuild": "^0.28.0",
|
|
151
|
+
"typescript": "^5.4.0"
|
|
152
|
+
}
|
|
153
|
+
}
|