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
Arguments
{
"address": "1119 8th Avenue, Seattle, WA 98101",
"lat": 47.6085,
"lon": -122.3295,
"_apiKey": "your-walkscore-api-key"
}
curl
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":{"address":"1119 8th Avenue, Seattle, WA 98101","lat":47.6085,"lon":-122.3295,"_apiKey":"your-walkscore-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('walkscore_score', {
"address": "1119 8th Avenue, Seattle, WA 98101",
"lat": 47.6085,
"lon": -122.3295,
"_apiKey": "your-walkscore-api-key"
});
More examples
{
"address": "Times Square, New York, NY 10036",
"lat": 40.758,
"lon": -73.9855,
"transit": true,
"bike": true,
"_apiKey": "your-walkscore-api-key"
}
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.