Skip to content
VS Code

permits for VS Code

co.addressintel/permits

SF Peninsula building permits and parcel buildability: SB 9, ADU and redevelopment leads.

client:VS Code transport:stdio runtime:npm

Install permits in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "addressintel-api-key",
      "description": "ADDRESSINTEL_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "permits": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "addressintel-mcp"
      ],
      "env": {
        "ADDRESSINTEL_API_KEY": "${input:addressintel-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

permits in other clients