ABAPilot for VS Code
io.github.nicohern/abapilot-mcp
ABAP MCP connector for SAP ECC and on-premise S/4HANA. Requires a licensed ABAPilot backend.
client:VS Code
transport:stdio
runtime:npm
Install ABAPilot in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "abapilot-url",
"description": "ABAPILOT_URL",
"password": true
},
{
"type": "promptString",
"id": "abapilot-user",
"description": "ABAPILOT_USER",
"password": true
},
{
"type": "promptString",
"id": "abapilot-password",
"description": "ABAPILOT_PASSWORD",
"password": true
},
{
"type": "promptString",
"id": "abapilot-token",
"description": "ABAPILOT_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "abapilot-client",
"description": "ABAPILOT_CLIENT",
"password": true
},
{
"type": "promptString",
"id": "abapilot-tools",
"description": "ABAPILOT_TOOLS",
"password": true
},
{
"type": "promptString",
"id": "abapilot-tls-insecure",
"description": "ABAPILOT_TLS_INSECURE",
"password": true
}
],
"servers": {
"abapilot-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"abapilot"
],
"env": {
"ABAPILOT_URL": "${input:abapilot-url}",
"ABAPILOT_USER": "${input:abapilot-user}",
"ABAPILOT_PASSWORD": "${input:abapilot-password}",
"ABAPILOT_TOKEN": "${input:abapilot-token}",
"ABAPILOT_CLIENT": "${input:abapilot-client}",
"ABAPILOT_TOOLS": "${input:abapilot-tools}",
"ABAPILOT_TLS_INSECURE": "${input:abapilot-tls-insecure}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs