livetrafficcam-mcp
Click on "Deploy 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., "@livetrafficcam-mcpShow live cameras on I-90 in Washington."
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.
livetrafficcam-mcp
MCP (Model Context Protocol) server for LiveTrafficCam, a directory of live US traffic cameras built on official state DOT feeds. Every camera is checked on a rolling schedule with real HTTP requests, so "live" means a verified current image, not a listing.
The server wraps the site's public JSON API. It sends one request per tool
call, caches responses for 60 seconds, and returns compact JSON with a
source_url you can cite.
Install
Requires Node 20 or newer.
Claude Desktop (claude_desktop_config.json):
{
"mcpServers": {
"livetrafficcam": {
"command": "npx",
"args": ["-y", "livetrafficcam-mcp"]
}
}
}Claude Code:
claude mcp add livetrafficcam -- npx -y livetrafficcam-mcpCursor (.cursor/mcp.json):
{
"mcpServers": {
"livetrafficcam": {
"command": "npx",
"args": ["-y", "livetrafficcam-mcp"]
}
}
}Related MCP server: trafikverket-mcp
Tools
list_states— states covered, camera counts, and a liveness summary per state. Example: "Which states have traffic camera coverage?"cameras_by_state— cameras for a two-letter state code, with an optional route filter. Example: "Show live cameras on I-90 in Washington."cameras_for_entity— cameras for a named pass, corridor, bridge or tunnel slug. Example: "What do the Donner Pass cameras show?" usesdonner-pass.camera_status— one camera's verified-live status, last live time, and official DOT source. Example: "Is the I-90 floating bridge camera up?"state_uptime— measured uptime for a state's camera fleet: live, stale and dead counts plus the 14-day check success rate. Example: "How reliable are Washington's traffic cameras?"
The camera API returns at most 200 cameras per query; tool output says so when a state has more. Fleet counts come from the camera uptime report.
Data source and attribution
All data comes from livetrafficcam.com's public API, which aggregates official state DOT camera feeds (WSDOT, Caltrans, UDOT, and others). Every camera result carries the attribution line for its agency; keep it when you display the data. Uptime numbers should cite the uptime report.
More from the same data:
Camera uptime report — measured per-state uptime of official DOT cameras.
Traffic camera statistics — how many official DOT traffic cameras exist, per state and agency.
Donner Pass cameras — an example of the pass pages the entity tool points at.
License
MIT
Available Tools
5 toolscameras_by_stateA
List traffic cameras for a US state (two-letter code), optionally filtered by route (e.g. "I-80"). The API returns at most 200 cameras per query; use state_uptime for full fleet counts.
| Name | Required | Description | Default |
|---|---|---|---|
| route | No | Optional route filter, e.g. I-80 or SR 20 | |
| state | Yes | Two-letter state code, e.g. WA | |
| live_only | No | Only cameras currently verified live (default true) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full disclosure burden. It usefully reveals the 200-camera limit and points to an alternative for complete counts. However, it does not mention output shape, pagination behavior, error conditions, or any access requirements, leaving notable behavioral gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences deliver the essential information with no filler. The primary purpose is stated first, and the critical operational caveat (200-camera limit) plus the alternative tool are provided in the second sentence, which is ideal for an agent scanning descriptions.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a moderately simple list tool, the description covers the main operational caveat (result cap) and directs the agent to the correct sibling for full counts. It lacks an output schema and has no annotations, but the core information needed to scope and call the tool correctly is present.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already explains state, route, and live_only. The description adds a route example and restates the two-letter state requirement, but it does not meaningfully expand on parameter semantics beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('List'), a clear resource ('traffic cameras'), and a precise scope ('for a US state (two-letter code)'), with an optional route filter. It also names state_uptime as a distinct tool for full fleet counts, helping separate it from a sibling at a glance.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly tells the agent when to avoid this tool: if full fleet counts are needed, use state_uptime instead. It does not explicitly contrast with cameras_for_entity or camera_status, but the state-scoped purpose is clear enough to infer most usage boundaries.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cameras_for_entityA
List traffic cameras for a named pass, corridor, bridge or tunnel by its slug (e.g. donner-pass, snoqualmie-pass). Includes the matching livetrafficcam.com page URL.
| Name | Required | Description | Default |
|---|---|---|---|
| entity_slug | Yes | Entity slug, e.g. donner-pass |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must carry the transparency burden alone; it does clearly indicate a read-only operation and discloses that the result includes the matching livetrafficcam.com page URL. However, it does not explain behavior for unknown slugs, pagination, or any further response conventions, so it only reaches adequate transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single, front-loaded sentence that conveys purpose, scope, slug format, and one important output detail. It contains no filler and does not restate the parameter name.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a one-parameter list tool with no output schema or annotations, the description covers the input contract and at least one key output element (the page URL). It could be more complete about other returned camera fields or error/empty behavior, but nothing essential for invoking it correctly is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already fully documents entity_slug, so the baseline is 3, but the description adds meaning by specifying that the slug represents a pass, corridor, bridge, or tunnel and by providing two realistic examples (donner-pass, snoqualmie-pass) beyond the schema's single example.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb ('List') and a precise resource ('traffic cameras for a named pass, corridor, bridge, or tunnel'), scoped by slug with concrete examples. This makes it distinct from siblings like cameras_by_state, which target states rather than entity slugs.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The phrasing 'for a named pass, corridor, bridge, or tunnel by its slug' clearly communicates when to use this tool: when you have an entity slug. It does not explicitly name alternatives or when-not conditions, but the use case is strongly implied and unambiguous.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
camera_statusA
Live status of one camera: verified-live state, last live time, official DOT source URL and attribution. Identify the camera by id, slug, or a name fragment, within a state.
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | Camera name or fragment, e.g. 'Floating Bridge' | |
| slug | No | Camera slug from other tools | |
| state | Yes | Two-letter state code, e.g. WA | |
| camera_id | No | Camera id from other tools |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the behavioral burden. It communicates that this is a read-style status lookup and enumerates what the result contains. It does not discuss rate limits, auth, or side effects, but 'Live status of one camera' strongly implies a non-mutating query.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two compact sentences. The first establishes the tool's output, and the second explains how to address a specific camera. There is no filler or repetition of schema details.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
There is no output schema, so describing the return contents in prose is important and is done well. The main gap is not explicitly stating whether exactly one of name, slug, or camera_id is required, but the overall description is sufficient for a straightforward status lookup.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, giving the baseline 3. The description adds real value by explaining that the camera can be identified by id, slug, OR name fragment, and that these are scoped within a state. This clarifies the relationship between state and the optional identifier parameters beyond the schema alone.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description names a specific verb ('Live status'), a clear resource ('one camera'), and the key output fields (verified-live state, last live time, source URL, attribution). This distinguishes it from siblings like cameras_by_state (listing) and state_uptime (state-level status).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It clearly implies this is for fetching status of a single camera using id, slug, or name fragment within a state. However, it does not explicitly say when to prefer this over cameras_by_state or state_uptime, nor does it state that one of the identifiers should be supplied.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_statesA
List the US states covered by livetrafficcam.com with camera counts and a liveness summary per state. Counts come from the measured camera uptime report.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description communicates that this is a list operation and adds that counts originate from the measured camera uptime report, which provides useful provenance. However, the 'liveness summary' is not defined, and with no annotations providing safety or behavior hints, some behavioral context is left unstated.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two concise sentences: the first states the action and result, the second adds data provenance. There is no redundant wording or filler, and the key information is front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple zero-parameter list operation, the description covers the scope, the per-state grouping, and the two output categories: camera counts and liveness summary. It could define 'liveness summary' more precisely, but overall it is sufficient for an agent to invoke the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters and the input schema is empty with 100% description coverage, so there are no parameter semantics for the description to clarify. This matches the baseline for a no-parameter tool.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states a specific verb ('List') and resource ('US states covered by livetrafficcam.com'), and it specifies the output contents: camera counts and a liveness summary per state. It does not explicitly differentiate itself from sibling tools like state_uptime or cameras_by_state, but its scope is reasonably distinct.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is given about when to prefer this tool over the sibling tools. There is no mention of alternatives, conditions, or exclusion criteria, so an agent must infer usage from the name and description alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
state_uptimeA
Measured camera uptime for one state: how many official DOT cameras are live, stale or dead right now, and the 14-day check success rate. Cite the report URL when quoting these numbers.
| Name | Required | Description | Default |
|---|---|---|---|
| state | Yes | Two-letter state code, e.g. WA |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description itself carries the disclosure burden. It states the output content (live/stale/dead counts, 14-day check success rate), notes the temporal scope ('right now'), and adds a practical behavioral instruction to cite the report URL. It does not mention rate limits or data freshness, but the tool appears to be a straightforward read-only report.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences with no wasted words. "no waste" and front-loads the core function before the citation requirement.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description adequately explains what the tool returns (live/stale/dead counts and success rate) and the report URL citation rule. Since there is no output schema, this is necessary and sufficient for a simple query tool. It does not cover invalid state handling, but that 's a minor gap.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has full description coverage for the single 'state' parameter, including format and example. The description adds no new parameter semantics beyond confirming 'one state,' which is appropriate given the schema is already complete.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states a specific action and resource: measuring camera uptime for a single state, including live/stale/dead counts and a 14-day success rate. It does not explicitly name sibling tools, but the resource scope ('one state') and aggregate report nature distinguish it from camera-level or listing tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage context: it is for aggregated uptime reporting per state, not for individual camera status or camera lists. However, it does not explicitly state when to prefer this tool over its siblings or provide exclusions such as 'use camera_status for a single camera.'
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
5 tool updates
v1.0.0- First observed
camera_status - First observed
cameras_by_state - First observed
cameras_for_entity - First observed
list_states - First observed
state_uptime
TDQS
Scored across 5 tools
Each tool targets a distinct lookup type: state overview, cameras by state/route, cameras by named entity, single-camera status, and uptime statistics. There is minor overlap between list_states and state_uptime since both mention liveness summaries, but their levels of detail and purposes are clearly different.
Naming is readable but inconsistent: list_states uses a verb, cameras_by_state and cameras_for_entity follow a noun-by-entity pattern, while camera_status and state_uptime are noun-noun phrases. The conventions are mixed but still predictable enough to navigate.
Five tools is well-scoped for a traffic camera lookup server. Each tool covers a necessary access pattern without redundancy, and the count feels neither thin nor bloated.
The set covers the core domain well: state coverage, camera listing by state/route and named entities, single-camera status, and uptime reporting. Minor gaps exist, such as no direct camera-image or stream endpoint and no free-text national camera search, but agents can work around these with the provided URLs.
Maintenance
Related MCP Connectors
Query 17,000+ verified task routes with known gotchas and API drift alerts. Free keyless reads.
WA highway conditions, ferry schedules, vessel locations, toll rates, and border waits via MCP.
Live California road conditions: CHP incidents, Caltrans closures, chain controls, and wildfires.
Monitor websites, APIs, and servers: create monitors, triage incidents, and query uptime stats.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceProvides live US airport operational status and delay data from the FAA, free and without authentication.4 npmMIT
- FlicenseAqualityDmaintenanceProvides real-time access to Swedish road weather, traffic cameras, road conditions, and traffic flow data from Trafikverket (Swedish Transport Administration). Enables users to query weather stations, cameras, traffic situations, and flow data through natural language.10-
- AlicenseAqualityCmaintenanceProvides AI agents with live access to over 1 million traffic cameras worldwide, enabling search by bounding box, radius, route, or nearest point and fetching live frames.6MIT
- AlicenseNot gradedqualityBmaintenanceProvides access to Iowa DOT driver license station data, including hours, CDL testing info, and live queue camera images from waiting rooms.3 npmMIT