Skip to content
VS Code

geowire for VS Code

io.github.geowire/geowire

Place search, directions, isochrones & area analysis across 10 map providers. No API key to start.

client:VS Code transport:stdio runtime:npm

Install geowire in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "google-maps-api-key",
      "description": "GOOGLE_MAPS_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "yelp-api-key",
      "description": "YELP_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "census-api-key",
      "description": "CENSUS_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "foursquare-api-key",
      "description": "FOURSQUARE_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "geowire-internal-csv",
      "description": "GEOWIRE_INTERNAL_CSV",
      "password": true
    },
    {
      "type": "promptString",
      "id": "geowire-config",
      "description": "GEOWIRE_CONFIG",
      "password": true
    }
  ],
  "servers": {
    "geowire": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@geowirehq/mcp"
      ],
      "env": {
        "GOOGLE_MAPS_API_KEY": "${input:google-maps-api-key}",
        "YELP_API_KEY": "${input:yelp-api-key}",
        "CENSUS_API_KEY": "${input:census-api-key}",
        "FOURSQUARE_API_KEY": "${input:foursquare-api-key}",
        "GEOWIRE_INTERNAL_CSV": "${input:geowire-internal-csv}",
        "GEOWIRE_CONFIG": "${input:geowire-config}"
      }
    }
  }
}

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

geowire in other clients