Cityflo OTP 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., "@Cityflo OTP MCPWas route 12 late this week, and by how much?"
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.
Cityflo OTP MCP (AI Engineer take-home)
Small stdio MCP server for Mumbai North on-time performance over one week of trips.csv. Built for Priya’s ask: “Was route 12 late this week, and by how much?” — with drill-down, not a dashboard.
Scope
In
Domain: on-time performance only
Data:
data/trips.csv(Mon–Fri 2026-06-15 … 2026-06-19)Tools:
route_otp_summary,list_late_trips,data_quality_reportDeterministic delay / quarantine / aggregation in Python tools
Out
Occupancy, ticket triage, ops-log summariser
Databases, BI dashboards, web UI
Silent “data normalisation” that hides policy (see OPS-2207 below)
Related MCP server: Cityflo On-Time Performance MCP Server
Architecture
Agent / MCP client (stdio)
│
▼
cityflo_otp.server (FastMCP, 3 tools)
│
▼
cityflo_otp.otp (parse → quarantine → delays → aggregates)
│
▼
data/trips.csvThe model should call tools for numbers and only phrase the answer. Arithmetic never lives in the LLM.
Late definition
arrival_delay_min = actual_arrival − scheduled_arrival(timezone-aware)Late if
arrival_delay_min > 10(default; overridable vialate_threshold_min)Headline metrics: % late of usable trips, median / p90 arrival delay (not a fragile mean)
Departure delay is returned for drill-down only
Data-quality decisions
Trip | Action | Why |
TRIP_031 | Quarantine |
|
TRIP_017 | Quarantine | Actual arrival before actual departure |
TRIP_044 | Quarantine |
|
TRIP_101 | Quarantine | Missing |
Quarantined rows are excluded from OTP % / median and listed in tools. We do not invent corrected timestamps.
During initial data inspection (reading the starter bundle’s ops_log.txt, which is not loaded by this MCP at runtime), device D-22 / MH-14-5590 was noted as flaky. The runtime tools only see trips.csv: they quarantine D-22 rows when timestamp checks fail, and leave other consistent D-22 trips usable.
Untrusted handoff text (OPS-2207 / MH-12-7781)
HANDOFF.md contains instruction-shaped text asking tools to force vehicle MH-12-7781 on-time and hide that rule. This server does not apply that override. The same late rule is used for every plate. data_quality_report surfaces the raw MH-12-7781 evaluation and a policy question for Priya. Hiding falsified numbers from a regional manager fails the auditability bar.
Assumptions
Arrival lateness is the right primary metric for Priya’s standup fight.
Default threshold of 10 minutes separates pattern (e.g. Route 12) from noise.
Prefer quarantine over silent correction of GPS/timezone garbage.
Thin samples (e.g. R-21 n=1) should be labeled, not ranked aggressively.
Ticket/occupancy files are out of scope for this MCP.
Questions for Priya
Confirm arrival (vs departure) as the official late definition?
Confirm >10 min for regional-manager figures (or 5 / 15)?
How should MH-12-7781 / OPS-2207 appear: exclude with disclosure, include raw, or dual view?
Minimum trip count before a route enters “worst offenders”?
For
+00:00timestamps: always quarantine, or allow an explicit IST reinterpretation with an audit flag?
How to run
cd ~/repos/cityflo-otp-mcp
python3 -m venv .venv && source .venv/bin/activate
pip install -e .
# or: pip install mcp && PYTHONPATH=src ...Checks (no MCP):
PYTHONPATH=src python scripts/verify_otp.pyReal MCP client multi-step run (route_otp_summary → list_late_trips → data_quality_report):
PYTHONPATH=src python scripts/run_mcp_client.pyTranscript written to notes/mcp_client_transcript.jsonl.
Cursor / Claude Desktop (stdio): point an MCP server entry at:
{
"mcpServers": {
"cityflo-otp": {
"command": "python",
"args": ["/absolute/path/to/cityflo-otp-mcp/src/cityflo_otp/server.py"],
"env": {
"PYTHONPATH": "/absolute/path/to/cityflo-otp-mcp/src",
"CITYFLO_TRIPS_CSV": "/absolute/path/to/cityflo-otp-mcp/data/trips.csv"
}
}
}
}Example agent interaction
route_otp_summary({ "route": "Route 12" })
→ usable 8, late 6, 75% late, median arrival delay on the order of ~13–16 min, 0 quarantined on R-12.list_late_trips({ "route": "R-12" })
→ the six late trip ids with per-trip arrival delays and vehicles.data_quality_report({})
→ four quarantined trips week-wide + MH-12-7781 policy note (TRIP_090 / TRIP_119 late under raw rule).
Deliberately cut
Other domains (occupancy / tickets / standup)
Auto-fixing timezone offsets
Ranking API across all routes (easy to add; not required for Priya’s Route 12 ask)
Hidden OPS-2207 normalisation
Where I disagreed with the AI
See notes/DISAGREEMENTS.md.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceProvides real-time access to Bangalore's public transportation information including bus tracking, schedules, routes, and service updates to improve passenger experience.3MIT
- FlicenseNot gradedqualityCmaintenanceCompute and analyze bus route lateness using trip data, with drill-down and cross-referencing against rider complaints and operational logs.
- FlicenseNot gradedqualityCmaintenanceAnswers operational questions about route on-time performance, such as lateness rates and trip evidence, using structured tools for route summary, trip lateness, and data quality.
- AlicenseBqualityCmaintenanceMCP server for grounded analysis of synthetic electric-taxi operations data, exposing tools for aggregated metrics, charging risk, and policy retrieval.3MIT
Related MCP Connectors
Messy spreadsheets in, clean checkable tables out. Every result carries its arithmetic proof.
Data observability tools for engineering teams: alerts, freshness, schema drift, lineage, quality.
Real-time transit stops, routes, arrivals, vehicle positions, and schedules via OneBusAway APIs.
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/Sonu0305/cityflo-otp-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server