mcp-traveltime
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-traveltimeWhat areas are reachable within 30 minutes by public transport from central London?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
mcp-traveltime
TravelTime MCP — multi-modal isochrones & reachability incl. PUBLIC TRANSPORT
Part of Pipeworx — an MCP gateway connecting AI agents to 1576+ live data sources.
Tools
Tool | Description |
| 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" }) |
| 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" }) |
Related MCP server: mcp-transit-land
Quick Start
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"traveltime": {
"url": "https://gateway.pipeworx.io/traveltime/mcp"
}
}
}What this endpoint actually serves
tools/list at https://gateway.pipeworx.io/traveltime/mcp returns the tools in the table
above plus the shared Pipeworx meta-tools — ask_pipeworx,
discover_tools, search_within, remember/recall and the rest of the
gateway-wide set. So the tool count you see is larger than this table: a
single-pack endpoint currently lists roughly 30 shared tools alongside the
pack's own. The connection's initialize response states its exact scope, and
is the authoritative answer for a given day.
This is deliberate, not multiplexing by accident. The meta-tools are what let a
scoped connection answer a question this pack does not cover — via
ask_pipeworx, which routes across the whole catalog — without you adding a
second MCP server. There is currently no way to mount a pack endpoint without
them; if the extra schemas cost you more context than the routing is worth,
connect to the full gateway once rather than to several pack endpoints.
Or connect to the full Pipeworx gateway to get every pack's tools listed directly, instead of just this one's:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}Both URLs reach the same gateway and the same 1576+ data sources. The
only difference is which pack's tools are listed directly; ask_pipeworx
reaches all of them from either one.
Standalone (no gateway account)
This package also runs as a local stdio MCP server — no Pipeworx account, no gateway round-trip:
{
"mcpServers": {
"traveltime": {
"command": "npx",
"args": ["-y", "@pipeworx/mcp-traveltime"]
}
}
}Or run it directly to confirm it starts:
npx -y @pipeworx/mcp-traveltimeIt speaks MCP over stdin/stdout and answers initialize/tools/list/tools/call
for only this pack's tools — none of the shared meta-tools the gateway
connection above adds. Same source, same tools, no ask_pipeworx routing.
Using with ask_pipeworx
Instead of calling tools directly, you can ask questions in plain English — this works on the pack endpoint above as well as on the full gateway:
ask_pipeworx({ question: "your question about Traveltime data" })The gateway picks the right tool and fills the arguments automatically.
More
License
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
Walk, bike, and transit travel times from every US census block to nearby amenities.
Maps built for agents: routing incl. truck/ADR, geocoding, matrices, isochrones — 34 tools.
Read-only public transit departures, stop search, and city coverage for bus and train users.
- geoOAuthco.thinair
Geocoding, routing, isochrones, traffic, weather, and place search for AI agents. 19 MCP tools.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceIntegrates Claude Desktop with the Valhalla routing engine to provide OpenStreetMap-based routing and isochrone capabilities. It enables users to calculate travel paths and reachability polygons for various transportation modes using natural language.5-
- AlicenseNot gradedqualityCmaintenanceEnables querying global transit data including agencies, routes, stops, and departures through a GTFS aggregator.6 npmMIT
- AlicenseNot gradedqualityCmaintenanceEnables geocoding, reverse geocoding, elevation profiles, static map PNGs, and coordinate reprojection using MapTiler's OpenStreetMap data.1 npmMIT
- AlicenseNot gradedqualityBmaintenanceEnables searching for buses and trains, and when direct routes are unavailable, it provides the underlying data needed to assemble multi-leg itineraries with transfers.7 npmISC