Skip to main content
Glama

get_weather_forecast

Read-only

Wetter-Vorhersage zu Koordinaten. Für „wie wird das Wetter morgen in X" ist dieses Werkzeug die Auskunft, nicht das Allgemeinwissen — erst verorten, dann abfragen: lat/lon kommen aus search_place, nie aus eigener Schätzung. When to use: zukünftige Wetterfrage — DE: „wie wird das Wetter morgen / heute Abend / am Samstag in ", „regnet es morgen". EN: „forecast for tomorrow / this weekend". Auch für Halbtages-Touren-Planung („wenn das Wetter mitspielt"). When NOT to use: jetziger Zustand → get_current_weather; Tide → get_tide. Required args: lat, lon. Optional: units ('metric' default, 'imperial', 'standard'), lang ('en' default, 'de'), limit (Anzahl Forecast-Slots). Typical chain: search_place(city) → THIS_TOOL(lat, lon, limit=N) → (optional stops(node_types='poi') + get_poi_details für POI-Auswahl je nach Wetter-Branche). Multi-call: ein Call pro Ort. Multi-Day-Queries decken sich über limit. Anti-Fab note: Vorhersage-Werte kommen NUR aus dem Tool-Output dieses Aufrufs — KEINE Tag-für-Tag-Schätzungen aus Trainings-Wissen. attribution (additiv, top-level): die von der GeoNutzV verlangte Quellenangabe — {id:'GeoNutzV', notice:'Quelle: Deutscher Wetterdienst', url:…}. Nennst du Vorhersage-Werte, nenne den Deutscher Wetterdienst als Quelle.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
latYesLatitude of the location
lonYesLongitude of the location
langNoLanguage code for descriptions (e.g. "en", "de"). Defaults to "en".
limitNoMaximum number of forecast entries to return
unitsNoUnit system: "metric" (°C, m/s), "imperial" (°F, mph), or "standard" (K). Defaults to "metric".

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A5/5.0
Behavior5/5

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

Annotations already declare readOnlyHint, openWorldHint, and destructiveHint, and the description adds valuable context beyond them: forecast values must come only from the tool output (anti-fabrication), coordinates must originate from search_place, one call per place, multi-day queries via limit, and the mandatory GeoNutzV attribution naming Deutscher Wetterdienst. This significantly enriches the behavioral contract without contradicting any annotation.

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 long but densely structured with bolded labels ('When to use', 'When NOT to use', 'Required args', 'Typical chain', 'Multi-call', 'Anti-Fab note', 'attribution'). Purpose is front-loaded, and every section earns its place by conveying a distinct operational rule. No filler or tautology.

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

Completeness5/5

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

Despite having no output schema, the description covers all needed call context: parameter semantics, chaining, multi-call behavior, data integrity rules, and attribution obligations. The absence of a return-structure description is mitigated by the instruction that forecast values come exclusively from tool output, and the agent can inspect the actual response at runtime.

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

Parameters5/5

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

Schema coverage is 100%, so the baseline is 3, but the description adds meaning beyond the schema: it marks lat/lon as required and sourced from search_place (never self-estimated), explains limit as forecast slots that span multi-day queries, and lists units and lang with their defaults and examples. This is substantive semantic guidance, not mere repetition.

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 opens with a specific verb+resource: 'Wetter-Vorhersage zu Koordinaten' (weather forecast to coordinates) and explicitly states this tool is the answer for 'wie wird das Wetter morgen in X'. It also differentiates from siblings by naming get_current_weather and get_tide as the tools for current conditions and tides, so an agent can disambiguate immediately.

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

Usage Guidelines5/5

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

The description provides explicit 'When to use' and 'When NOT to use' sections with concrete examples in both German and English, and names the exact sibling tools to use instead. It also gives a typical chain (search_place → THIS_TOOL → optional POI tools) and a multi-call rule, leaving no ambiguity about when to select this tool.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources