Connects to Transport for London's Unified API without requiring your own API key. Runs through Pipeworx's gateway, which handles authentication and gives you access to TfL's live transit data: line status, arrivals, journey planning, disruptions, and station information across the Tube, buses, rail, and other London transport modes. The source doesn't list specific tools, but you can use ask_pipeworx to query in plain English and let the gateway route to the right endpoint. Useful if you're building transit apps, analyzing London commute patterns, or need real-time transport status without the setup overhead. Part of a larger gateway offering 693+ data sources if you need to expand beyond London transit.
Transport for London (TfL) Unified API MCP — keyless.
Part of Pipeworx — an MCP gateway connecting AI agents to 693+ live data sources.
| Tool | Description |
|---|
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"tfl": {
"url": "https://gateway.pipeworx.io/tfl/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 693+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Tfl data" })
The gateway picks the right tool and fills the arguments automatically.
MIT