mcp abap adt for VS Code
io.github.fr0ster/mcp-abap-adt
MCP server for SAP ABAP ADT: repository analysis and CRUD for RAP and classic ABAP
client:VS Code
transport:stdio
runtime:npm
Install mcp abap adt in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "sap-url",
"description": "SAP_URL",
"password": true
},
{
"type": "promptString",
"id": "sap-auth-type",
"description": "SAP_AUTH_TYPE",
"password": true
},
{
"type": "promptString",
"id": "sap-system-type",
"description": "SAP_SYSTEM_TYPE",
"password": true
},
{
"type": "promptString",
"id": "sap-client",
"description": "SAP_CLIENT",
"password": true
},
{
"type": "promptString",
"id": "sap-jwt-token",
"description": "SAP_JWT_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "sap-username",
"description": "SAP_USERNAME",
"password": true
},
{
"type": "promptString",
"id": "sap-password",
"description": "SAP_PASSWORD",
"password": true
},
{
"type": "promptString",
"id": "sap-language",
"description": "SAP_LANGUAGE",
"password": true
},
{
"type": "promptString",
"id": "sap-master-system",
"description": "SAP_MASTER_SYSTEM",
"password": true
},
{
"type": "promptString",
"id": "sap-responsible",
"description": "SAP_RESPONSIBLE",
"password": true
}
],
"servers": {
"mcp-abap-adt": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@mcp-abap-adt/core"
],
"env": {
"SAP_URL": "${input:sap-url}",
"SAP_AUTH_TYPE": "${input:sap-auth-type}",
"SAP_SYSTEM_TYPE": "${input:sap-system-type}",
"SAP_CLIENT": "${input:sap-client}",
"SAP_JWT_TOKEN": "${input:sap-jwt-token}",
"SAP_USERNAME": "${input:sap-username}",
"SAP_PASSWORD": "${input:sap-password}",
"SAP_LANGUAGE": "${input:sap-language}",
"SAP_MASTER_SYSTEM": "${input:sap-master-system}",
"SAP_RESPONSIBLE": "${input:sap-responsible}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs