sap adt mcp for VS Code
io.github.yzonur/sap-adt-mcp
Give Claude live access to SAP ABAP via ADT: read, search, check, test, and edit objects.
client:VS Code
transport:stdio
runtime:npm
Install sap adt mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "sap-adt-mcp-config",
"description": "SAP_ADT_MCP_CONFIG",
"password": true
}
],
"servers": {
"sap-adt-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"sap-adt-mcp"
],
"env": {
"SAP_ADT_MCP_CONFIG": "${input:sap-adt-mcp-config}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs