TravelTime

live GeospatialData

Public-transit isochrones (area reachable in N minutes) and reachability filters. BYO key.

2 tools
0ms auth
free tier 50 calls/day

Tools

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. Retur

No parameters required.

Try it
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

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/traveltime/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/traveltime/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"traveltime_isochrone","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("traveltime_isochrone", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("public-transit isochrones (area reachable in n minutes) and reachability filters");

Related packs

Other Pipeworx packs in the same categories (Geospatial, Data):