BusTime MCP
Click on "Install 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., "@BusTime MCPWhen is the next bus at stop 15678?"
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.
BusTime MCP
An MCP server that wraps the CTA (Chicago Transit Authority) Bus Tracker API, giving MCP clients live access to CTA bus routes, stops, predictions, vehicle locations, patterns, and detours. Built with FastMCP and deployed via Prefect Horizon.
Features
Full coverage of the CTA Bus Tracker v3 API (routes, directions, stops, patterns, predictions, vehicles, locales, detours, enhanced detours, system time)
Async HTTP via
httpx, with clean error handling for missing config, bad status codes, and network failuresIn-memory TTL caching on slow-changing endpoints (routes, directions, stops, patterns, locales, detours) — real-time endpoints (predictions, vehicles, time) always hit the live API
Server-level
instructionsand per-tool descriptions designed to help MCP clients chain calls correctly (e.g. routes → directions → stops → predictions)Test suite covering the HTTP layer, caching behavior, and tool parameter validation
Related MCP server: marta-mcp
Prerequisites
A CTA Bus Tracker developer API key
A GitHub account, with this repo pushed to it (Horizon deploys from a GitHub repo)
A Horizon account (free personal tier)
Getting a CTA API key
Sign up for and activate a Bus Tracker account
Sign in, then go to My Account (upper right)
Follow the Developer API link to apply for a key
Full details: CTA Developer Center — Bus Tracker APIs
Deploying to Horizon
Push this repo to GitHub (public or private both work).
Sign in to horizon.prefect.io with GitHub and connect the repo.
On the configure screen, set:
Entrypoint:
main.py:mcpAuthentication: enable this if you want to restrict access to your org rather than leaving the endpoint open — see Rate limits below for why that matters here.
Dependencies are auto-detected from
pyproject.toml— nothing to configure manually.
Set
CTA_URLandCTA_API_KEYas environment variables/secrets for the deployment. Horizon's configuration screen should have a place for this; check the current UI when you get there, since the exact field wasn't fully documented at the time this was written.Click Deploy. You'll get a live URL, typically in under 60 seconds:
https://<your-server-name>.fastmcp.app/mcp
Horizon rebuilds and redeploys automatically on every push to main, and builds preview deployments for PRs.
Verifying before you deploy
uv run fastmcp inspect main.py:mcpThis shows what Horizon will see when it runs the server — tools, resources, and prompts — so you can catch config problems locally before pushing.
Connecting a client once deployed
Once live, MCP clients connect by URL rather than by spawning a local process:
{
"mcpServers": {
"BusTime": {
"url": "https://<your-server-name>.fastmcp.app/mcp"
}
}
}Horizon also provides its own Inspector and ChatMCP for testing the deployed server directly in the browser before wiring up any client.
Available tools
Tool | Endpoint | Cached? |
|
| 24h |
|
| 24h |
|
| 30 min |
|
| 1h |
|
| never (real-time) |
|
| never (real-time) |
|
| never (real-time) |
|
| 24h |
|
| 2 min |
|
| 2 min |
Typical call sequence: get_routes → get_directions(rt) → get_stops_for_route(rt, direction) → get_predictions_for_stop(stpid, rt, top). See the server's instructions string in main.py for the full call graph, including how patterns, vehicles, and detours fit in.
Known limitation: get_enhanced_detours may return an "Unsupported function" error depending on your API key — this endpoint is GTFS-RT-oriented and appears to require CTA to enable it per-account. This is a CTA-side limitation, not a bug in this server.
Caching
Cacheable endpoints use a simple in-memory TTL cache (see _cached_get in main.py) keyed by endpoint path + parameters. TTLs are set per-endpoint based on how often the underlying data actually changes.
The cache is in-memory and per-instance. It resets on restart/redeploy, and if Horizon ever runs multiple replicas of this server, each replica has its own independent cache rather than a shared one — still correct, just less effective at cutting duplicate calls than a single-instance setup.
Testing
uv sync
uv run pytest -vTests use pytest-asyncio (auto mode) and respx to mock HTTP calls — no real network access or live API key is needed to run them. Run this before every push, since Horizon redeploys automatically on main.
Project structure
.
├── main.py # server entrypoint + all tool definitions
├── pyproject.toml # dependencies (uv-managed; also read by Horizon for auto dependency detection)
├── tests/
│ ├── conftest.py # makes main.py importable from tests/
│ └── test_main.py
└── README.mdRate limits
CTA's Bus Tracker API defaults to a 100,000 request/day limit per key. This server's caching helps reduce call volume for slow-changing data, but there's currently no built-in tracking or backoff as you approach that limit. This matters more once deployed publicly: a hosted URL can be called by anyone who finds it, unlike a local stdio server only you can spawn — enabling Horizon's authentication option (above) is the simplest way to keep usage scoped to people you trust.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/countaight/bustime-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server