Skip to content
VS Code

compass mcp for VS Code

io.github.chrischall/compass-mcp

Compass real-estate for Claude — search, property details, photos, price history, compare

client:VS Code transport:stdio runtime:npm

Install compass mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "compass-ws-port",
      "description": "COMPASS_WS_PORT",
      "password": true
    }
  ],
  "servers": {
    "compass-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "compass-mcp"
      ],
      "env": {
        "COMPASS_WS_PORT": "${input:compass-ws-port}"
      }
    }
  }
}

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

compass mcp in other clients