Search 1M+ live traffic cameras worldwide by bounds, radius, route, or nearest point.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Vancam.ai β Traffic Cameras & Road Conditions β as an MCP (Model Context Protocol) server. Gives AI agents live access to the same camera network behind Vancam's road-condition data: over 1 million traffic cameras worldwide, searchable by map bounds, radius, route, or nearest point.
Option A: Install from PyPI
Option B: Clone and install dependencies
2. (Optional) Set up an API key
Requests work out of the box using a shared, rate-limited key (1 req/s, 500/month, pooled across all anonymous users). For higher limits, grab a free personal key from your Vancam.ai account page and set it as an environment variable:
3. Register the server with your MCP client
For Claude Desktop or Claude Code, add to your MCP config. If installed from PyPI (Option A):
If running from a local clone (Option B, see .mcp.json in this repo):
VANCAM_API_KEY is optional β leave it blank to use the shared, rate-limited key.
Restart your client, and the tools below become available.
list_camerasList cameras within a bounding box β the same query the VanCam map runs on pan/zoom.
| Parameter | Type | Description |
|---|---|---|
min_lat, min_lon, max_lat, max_lon | float | Bounding box (WGS84) |
limit | int, optional | Max results, 1β100 (default 100) |
active_only | bool, optional | Only camera_class=open live feeds (default false) |
get_cameras_by_radiusGet cameras within a radius of a point.
| Parameter | Type | Description |
|---|---|---|
lat, lon | float | Center point (WGS84) |
radius | float, optional | Radius in km (default 1.0) |
limit | int, optional | Max results (default 50) |
active_only | bool, optional | Only open/live cameras |
get_cameras_along_routeGet cameras along a straight-line corridor between two points.
| Parameter | Type | Description |
|---|---|---|
origin_lat, origin_lon, dest_lat, dest_lon | float | Route endpoints |
buffer | float, optional | Corridor width in meters (default 100.0) |
limit | int, optional | Max results (default 50) |
active_only | bool, optional | Only open/live cameras |
Results are sorted by route_fraction (0 = origin, 1 = destination). Note: this is a straight line between the two points, not a driving route.
get_nearest_camerasGet the closest cameras to a point.
| Parameter | Type | Description |
|---|---|---|
lat, lon | float | Query point (WGS84) |
limit | int, optional | Number of cameras (default 5) |
active_only | bool, optional | Only open/live cameras |
get_camera_imageFetch a camera's live frame by asset ID, returned as image data in the tool result (not just a URL β the image endpoint requires an API key header that most MCP clients can't attach themselves).
describe_camera_apiReturns documentation for all search modes, camera fields, and image URL patterns. Call this first if you're unsure which tool to use.
Every search tool queries the same spatial API that backs the Vancam.ai map:
| Purpose | URL |
|---|---|
| Spatial search | https://api.vancam.ai/cameras/cameras |
| Live image | https://api.vancam.ai/api?asset_id={id} |
Each camera includes asset_id, latitude, longitude, street_address, direction, camera_class (open/premium), level1/level2/level3 (country/state/city), distance_meters (radius/nearest searches), route_fraction (route search), and image_url/image_urls.
Full schema: openapi.yaml.
Environment overrides: VANCAM_API_KEY, VANCAM_CAMERAS_SEARCH_URL, VANCAM_API_IMAGE_URL
Contributions are welcome β feel free to open an issue or submit a pull request.
MIT β see LICENSE.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/vancam)<a href="https://allmcps.com/mcp/vancam"><img src="https://allmcps.com/api/badge/vancam?style=directory" alt="Vancam on AllMCPs" /></a>