Discover and search live webcams through the public Webcam Explore MCP server.
Use page_url as the preferred public link target for webcam pages.
MCP URL: https://www.webcamexplore.com/api/mcp
Transport: JSON-RPC over HTTP
Result limits: list-style tools default to 10 results and are safely capped at 20.
This endpoint is intended for AI tools, agents, and integrations that support MCP.
Note: the MCP endpoint expects POST JSON-RPC requests. Opening /api/mcp directly in a browser can return 405; use the discovery JSON or the curl checks below instead.
search_webcamsget_webcams_by_locationget_webcams_by_categoryget_trending_webcamsget_popular_webcamsget_webcamList tools
curl -s -X POST https://www.webcamexplore.com/api/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}'
Search webcams
curl -s -X POST https://www.webcamexplore.com/api/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"search_webcams","arguments":{"query":"Amsterdam","limit":1}}}'
{
"result": {
"structuredContent": {
"webcams": [
{
"id": "...",
"title": "...",
"location": "...",
"category": "...",
"trending": true,
"popularity_score": 100,
"thumbnail_url": "...",
"page_url": "...",
"is_live": true
}
]
}
}
}