connected-car-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., "@connected-car-mcpWhich vehicles in the fleet need attention right now, and why?"
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.
connected-car-mcp
An MCP (Model Context Protocol) server over a synthetic connected-vehicle fleet: telemetry, rule-based anomaly detection, and maintenance recommendations, exposed as five narrow tools instead of one open-ended query interface.
Built as a small, self-contained illustration of a specific design habit: deciding what belongs behind a tool boundary, and logging every call across it. Runs entirely on synthetic data generated locally — no external API, no account, no proprietary source.
Why it's shaped this way
The whole dataset could be exposed through a single run_query(sql: str)
tool. That's the wrong shape for an agent to call reliably: it pushes
schema-learning onto the model at call time, and there's no way to scope or
audit "what can be asked" per capability. Instead:
Tool | Contract |
| Enumerate the fleet |
| Raw readings for one vehicle, time-bounded |
| Latest snapshot + fleet averages |
| Rule-based flags: overheating, low battery, fault codes, harsh driving |
| Prioritized actions for one vehicle |
A model composes these — summary → pick a flagged vehicle → pull its
telemetry → get a recommendation — rather than writing free-form queries
against raw rows. It also makes the audit story trivial: there are only
five well-defined calls to log, so audit_log.jsonl (see
connected_car_mcp/audit.py) is one line per
call — timestamp, tool, arguments, duration, success/failure — with no
custom logic per tool. A production deployment would emit the same record
as structured logs via MCPServer's middleware hook (which sees every
JSON-RPC call, tool or resource) rather than a local file; the decorator
here keeps the demo runnable with zero extra infrastructure.
Anomaly thresholds are simple and explainable (engine_temp_c >= 110, not
a trained model) on purpose — a fleet monitor's flags need to be
auditable by a human, not just accurate.
Related MCP server: mcp-live-telemetry
Data
data/generate_telemetry.py generates a deterministic (fixed-seed),
fully synthetic dataset: 12 vehicles, readings every 10 minutes over 3 days.
A few vehicles are seeded with faults so the anomaly detector has real
signal to find:
CCV-004 — engine temperature ramps into critical range (cooling system failure)
CCV-009 — battery voltage degrades over time (failing battery/alternator)
CCV-002, CCV-011 — intermittent DTC fault codes
CCV-006 — occasional harsh-driving speed spikes
data/telemetry.csv is committed so the repo runs immediately; regenerate
it with:
python data/generate_telemetry.pyRunning it
python -m venv .venv
.venv/Scripts/activate # .venv/bin/activate on macOS/Linux
pip install -r requirements.txt
python -m connected_car_mcp.server # starts the MCP server over stdioTo try it from Claude Desktop or another MCP client, point it at the
module with cwd set to the repo root, e.g. in claude_desktop_config.json:
{
"mcpServers": {
"connected-car-fleet": {
"command": "python",
"args": ["-m", "connected_car_mcp.server"],
"cwd": "/path/to/connected-car-mcp"
}
}
}Then ask something like "Which vehicles in the fleet need attention right
now, and why?" — the model will call fleet_health_summary, follow up
with detect_anomalies on the flagged vehicles, and can call
get_maintenance_recommendations to turn that into next actions.
Tests
pip install pytest
pytest tests/Covers the data layer directly (fleet size, unknown-vehicle handling, and that the seeded faults actually get flagged) rather than round-tripping through the MCP protocol layer.
Project layout
connected_car_mcp/
server.py MCP tool + resource definitions
data_store.py Query layer over the telemetry CSV (pandas)
audit.py Per-call audit log decorator
data/
generate_telemetry.py Synthetic dataset generator
telemetry.csv Generated dataset (committed)
tests/
test_data_store.pyLicense
MIT — see LICENSE.
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
- AlicenseAqualityCmaintenanceMCP server that unifies real-time telemetry from industrial systems into a single queryable interface, enabling production visibility, anomaly detection, and operational insights.510MIT
- AlicenseAqualityBmaintenanceExposes live industrial IoT telemetry to any MCP client, streaming simulated sensor data from a fleet of machines and detecting anomalies, with the ability to inject faults on demand.4MIT
- AlicenseNot gradedqualityCmaintenanceMCP server exposing distributed industrial asset data (battery storage, EV chargers, solar arrays) with tools for asset status, geospatial search, alerts, anomaly explanation, and load simulation.1,014MIT
- AlicenseNot gradedqualityCmaintenanceEnables incident detection and analysis by identifying anomalies in metric time series and surfacing root-cause candidates and recommended actions. Supports both mock (synthetic) and VictoriaMetrics backends with identical MCP tool contracts for seamless development-to-production switching.MIT
Related MCP Connectors
A paid remote MCP for AI SDK eval dashboard, built to return verdicts, receipts, usage logs, and aud
Hosted MCP endpoint with realistic fake data for prototyping agents. 12 tools, no setup.
Free MCP tools: the only MCP linter, health checks, cost estimation, and trust evaluation.
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/somusathya/connected-car-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server