Skip to content
VS Code

Zillow Property Data (APIllow) for VS Code

co.apillow/zillow

Zillow property data for AI agents: search listings and get 50+ fields for any US property.

client:VS Code transport:stdio runtime:pypi

Install Zillow Property Data (APIllow) in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "apillow-api-key",
      "description": "APILLOW_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "zillow": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "apillow-mcp"
      ],
      "env": {
        "APILLOW_API_KEY": "${input:apillow-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

Zillow Property Data (APIllow) in other clients