Skip to content
VS Code

GuniWeb SAP MCP for VS Code

io.github.guniweb/guniweb-sap-mcp

SAP S/4HANA and ECC: OData V2/V4, IDoc and RFC/BAPI for n8n and other MCP clients

client:VS Code transport:stdio runtime:npm

Install GuniWeb SAP MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "sap-base-url",
      "description": "SAP_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sap-auth-type",
      "description": "SAP_AUTH_TYPE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sap-client",
      "description": "SAP_CLIENT",
      "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-mcp-demo",
      "description": "SAP_MCP_DEMO",
      "password": true
    }
  ],
  "servers": {
    "guniweb-sap-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "guniweb-sap-mcp"
      ],
      "env": {
        "SAP_BASE_URL": "${input:sap-base-url}",
        "SAP_AUTH_TYPE": "${input:sap-auth-type}",
        "SAP_CLIENT": "${input:sap-client}",
        "SAP_USERNAME": "${input:sap-username}",
        "SAP_PASSWORD": "${input:sap-password}",
        "SAP_MCP_DEMO": "${input:sap-mcp-demo}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

GuniWeb SAP MCP in other clients