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
| Name | Type | Required | Description |
|---|---|---|---|
address | string | yes | Full street address, e.g. “1119 8th Avenue, Seattle, WA 98101” |
lat | number | yes | Latitude of the location, e.g. 47.6085 |
lon | number | yes | Longitude of the location, e.g. -122.3295 |
transit | boolean | no | Set true to also return the Transit Score (public transit availability) |
bike | boolean | no | Set true to also return the Bike Score (bikeability) |
_apiKey | string | yes | Walk 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.