Skip to content
VS Code

rendezvous mcp for VS Code

dev.forgesworn/rendezvous-mcp

Fair meeting point discovery for AI agents with isochrone-based travel time fairness

client:VS Code transport:stdio runtime:npm

Install rendezvous mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "valhalla-url",
      "description": "VALHALLA_URL",
      "password": true
    }
  ],
  "servers": {
    "rendezvous-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "rendezvous-mcp"
      ],
      "env": {
        "VALHALLA_URL": "${input:valhalla-url}"
      }
    }
  }
}

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

rendezvous mcp in other clients