Skip to content
VS Code

openroute mcp for VS Code

io.github.vemonet/openroute-mcp

Plan routes using the OpenRouteService API, such as for hiking, mountain biking, or driving.

client:VS Code transport:stdio runtime:pypi

Install openroute mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "openrouteservice-api-key",
      "description": "OPENROUTESERVICE_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "openroute-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "openroute-mcp"
      ],
      "env": {
        "OPENROUTESERVICE_API_KEY": "${input:openrouteservice-api-key}"
      }
    }
  }
}

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

openroute mcp in other clients