MCP server exposing 2 tools for traveltime.
This URL is a JSON-RPC 2.0 endpoint over HTTP. Issue POST requests with a JSON-RPC body. Browsers and search crawlers land here on GET.
POST https://gateway.pipeworx.io/traveltime/mcp
Content-Type: application/json
{"jsonrpc":"2.0","id":1,"method":"tools/list"}
traveltime_isochrone — What area is reachable within N minutes by public transport (or driving/walking/cycling) from a point (isochrone / travel-time polygon). Unlike road-only routing, this supports public_transport. Returns the reachable-area polygon(s). Example: traveltime_isochrone({ lat: 51.5072, lon: -0.1276, travel_time: 30, minutes: true, transport: "public_transport", departure_time: "2026-07-06T08:30:00Z", _apiKey: "appId:apiKey" })traveltime_time_filter — Which of these locations are reachable within N minutes from an origin by public transport (or driving/walking/cycling), and how long each takes. Filters candidate destinations by travel time. Example: traveltime_time_filter({ origin_lat: 51.5072, origin_lon: -0.1276, destinations: [{ id: "a", lat: 51.52, lon: -0.09 }, { id: "b", lat: 51.60, lon: -0.20 }], travel_time: 45, minutes: true, transport: "public_transport", departure_time: "2026-07-06T08:30:00Z", _apiKey: "appId:apiKey" })Code samples (curl / TypeScript / one-click client install), schemas, and the live playground are on the pack page:
https://pipeworx.io/packs/traveltime/
Pipeworx is an open MCP gateway connecting AI agents to live data. pipeworx.io