Skip to content
VS Code

mcp geraride for VS Code

io.github.geraservicesuk/mcp-geraride

Book rides, request deliveries, estimate fares, track trips. 50+ countries.

client:VS Code transport:stdio runtime:npm

Install mcp geraride in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "geraride-api-url",
      "description": "GERARIDE_API_URL",
      "password": true
    }
  ],
  "servers": {
    "mcp-geraride": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@gera-services/mcp-geraride"
      ],
      "env": {
        "GERARIDE_API_URL": "${input:geraride-api-url}"
      }
    }
  }
}

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

mcp geraride in other clients