isochrone
Pack: mapbox · Endpoint: https://gateway.pipeworx.io/mapbox/mcp
“How far can I get in [N] minutes from [point]” / “reachable area in [time]” / “drive-time / walk-time / cycle-time polygons” / “delivery zone within [radius]” / “service area around [location]” — isochrone polygons (reachable area within X minutes or meters) from a starting coordinate by car, walking, or cycling. Use for site-selection, delivery-zone, commute-shed, and “how big a catchment do I have” questions.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
profile | string | yes | |
coordinates | array | yes | [lon, lat] |
items | number | no | |
contours_minutes | string | no | |
contours_meters | string | no | |
contours_colors | string | no | |
polygons | boolean | no | |
denoise | number | no | |
generalize | number | no |
Example call
Arguments
{
"profile": "driving",
"coordinates": [
-122.4194,
37.7749
],
"contours_minutes": "10,20,30"
}
curl
curl -X POST https://gateway.pipeworx.io/mapbox/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"isochrone","arguments":{"profile":"driving","coordinates":[-122.4194,37.7749],"contours_minutes":"10,20,30"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('isochrone', {
"profile": "driving",
"coordinates": [
-122.4194,
37.7749
],
"contours_minutes": "10,20,30"
});
More examples
{
"profile": "walking",
"coordinates": [
-74.006,
40.7128
],
"contours_minutes": "5,10,15",
"polygons": true
}
Response shape
Full JSON Schema
{
"type": "object",
"description": "Mapbox Isochrone API response with reachability contours"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"mapbox": {
"url": "https://gateway.pipeworx.io/mapbox/mcp"
}
}
}
See Getting Started for client-specific install steps.