Skip to main content
Glama
Cyreslab-AI

windy-webcams-mcp-server

get_webcam

Read-only

Retrieve detailed webcam data by ID, including images, location, player, and URLs. Get live feed details from Windy's global webcam network.

Instructions

Get detailed information about a specific webcam by ID

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
langNoLanguage code (default: "en")
includeNoComma-separated list of extra data to include (default: "images,location,player,urls"). One or more of: categories, images, location, player, urls.
webcam_idYesWebcam ID

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
dataNo
cachedNo
successYes
summaryYes
api_infoNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.8/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true and openWorldHint=true, covering the safety profile. The description adds no further behavioral context such as response detail, potential size, or failure modes, but it is consistent with the annotations and does not contradict them.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, clear sentence that front-loads the action and object. Every word earns its place, and there is no redundant or extraneous information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple single-ID lookup tool, the description combined with a fully documented schema, output schema, and annotations is sufficient. It lacks explicit sibling comparison, but the tool's purpose is unambiguous and the structured metadata fills the gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema already provides 100% coverage for all three parameters, including the required webcam_id and the lang and include options with default values. The description does not add extra parameter meaning beyond what the schema documents, so it provides no additional value here.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Get') and resource ('detailed information about a specific webcam') and clearly identifies the lookup key ('by ID'). This distinguishes it from sibling tools like search_webcams or get_webcams_by_location, which operate on lists or location rather than a single ID.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage: call this when you have a webcam ID and need details. However, it does not explicitly state when to prefer this over alternatives, nor does it mention exclusions or conditions, so the usage guidance is only implied.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.