MCP Server
io.github.oneill9/tfl-mcp-server MCP Server
io.github.oneill9/tfl-mcp-server
What is the io.github.oneill9/tfl-mcp-server MCP server?
Community-built server providing real-time London transport data via the TfL Unified API
How to install io.github.oneill9/tfl-mcp-server
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
TFL_APP_KEYsecretTfL API key — recommended for effective use. Without a key, TfL applies strict rate limits that will impact most real-world usage. Register free at https://api-portal.tfl.gov.uk/
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"tfl-mcp-server": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/oneill9/tfl-mcp-server:1.5.1"
],
"env": {
"TFL_APP_KEY": "<YOUR_TFL_APP_KEY>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"tfl-mcp-server": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/oneill9/tfl-mcp-server:1.5.1"
],
"env": {
"TFL_APP_KEY": "<YOUR_TFL_APP_KEY>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"tfl-mcp-server": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/oneill9/tfl-mcp-server:1.5.1"
],
"env": {
"TFL_APP_KEY": "<YOUR_TFL_APP_KEY>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"tfl-mcp-server": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/oneill9/tfl-mcp-server:1.5.1"
],
"env": {
"TFL_APP_KEY": "<YOUR_TFL_APP_KEY>"
}
}
}
}Claude Code
claude mcp add tfl-mcp-server --env TFL_APP_KEY=<YOUR_TFL_APP_KEY> -- docker run -i --rm ghcr.io/oneill9/tfl-mcp-server:1.5.1Related MCP servers
Community-built server providing real-time London transport data via the TfL Unified API
View repository →