walkscore_score

Pack: walkscore · Endpoint: https://gateway.pipeworx.io/walkscore/mcp

How walkable is

— Walk/Transit/Bike Score (0-100) plus a human-readable description of walkability, transit, and biking. NOTE: the Walk Score API requires lat AND lon AND address to all be provided — the coordinates locate the point and the address disambiguates it. Example: walkscore_score({ address: “1119 8th Avenue, Seattle, WA 98101”, lat: 47.6085, lon: -122.3295, transit: true, bike: true, _apiKey: “your-key” })

Parameters

NameTypeRequiredDescription
addressstringyesFull street address, e.g. “1119 8th Avenue, Seattle, WA 98101”
latnumberyesLatitude of the location, e.g. 47.6085
lonnumberyesLongitude of the location, e.g. -122.3295
transitbooleannoSet true to also return the Transit Score (public transit availability)
bikebooleannoSet true to also return the Bike Score (bikeability)
_apiKeystringyesWalk Score API key (get one free at walkscore.com/professional/api.php)

Example call

curl -X POST https://gateway.pipeworx.io/walkscore/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"walkscore_score","arguments":{}}}'

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "walkscore": {
      "url": "https://gateway.pipeworx.io/walkscore/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 2, 2026