Skip to content
VS Code

zillow mcp for VS Code

io.github.chrischall/zillow-mcp

Zillow real-estate for Claude — search, property details, Zestimates, saved searches & homes

client:VS Code transport:stdio runtime:npm

Install zillow mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "zillow-ws-port",
      "description": "ZILLOW_WS_PORT",
      "password": true
    }
  ],
  "servers": {
    "zillow-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "zillow-mcp"
      ],
      "env": {
        "ZILLOW_WS_PORT": "${input:zillow-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

zillow mcp in other clients