Skip to content
VS Code

fiori mcp server for VS Code

io.github.sap/fiori-mcp-server

SAP Fiori - Model Context Protocol (MCP) server

client:VS Code transport:stdio runtime:npm

Install fiori mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "log-level",
      "description": "LOG_LEVEL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sap-ux-fiori-tools-disable-telemetry",
      "description": "SAP_UX_FIORI_TOOLS_DISABLE_TELEMETRY",
      "password": true
    }
  ],
  "servers": {
    "fiori-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@sap-ux/fiori-mcp-server"
      ],
      "env": {
        "LOG_LEVEL": "${input:log-level}",
        "SAP_UX_FIORI_TOOLS_DISABLE_TELEMETRY": "${input:sap-ux-fiori-tools-disable-telemetry}"
      }
    }
  }
}

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

fiori mcp server in other clients