Skip to content
VS Code

redfin mcp for VS Code

io.github.chrischall/redfin-mcp

Redfin real-estate for Claude — search, property details, market reports, saved homes

client:VS Code transport:stdio runtime:npm

Install redfin mcp in VS Code

.vscode/mcp.json

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

redfin mcp in other clients