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

NameTypeRequiredDescription
profilestringyes
coordinatesarrayyes[lon, lat]
itemsnumberno
contours_minutesstringno
contours_metersstringno
contours_colorsstringno
polygonsbooleanno
denoisenumberno
generalizenumberno

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.

Regenerated from source · build July 6, 2026