Skip to main content
Glama

get_current_weather

Read-only

Aktuelles Wetter zu Koordinaten. Für „wie ist das Wetter 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: aktuelle Wetterfrage zu einem Ort — DE: „wie ist das Wetter in ", „regnet es gerade in ". EN: „what's the weather like in right now". Auch als Teil des Wetter-POI-Pfads („was kann ich bei dem Wetter unternehmen"). When NOT to use: Vorhersage > 1 Stunde voraus → get_weather_forecast; Gezeiten → get_tide. Required args: lat, lon. Optional: units ('metric' (°C, default), 'imperial' (°F), 'standard' (K)), lang ('en' default, 'de'). Typical chain: search_place(city) → THIS_TOOL(lat, lon) → (optional nearby/stops für POI-Match). Multi-call: ein Call pro Ort. Für Multi-Tag-Anfragen get_weather_forecast bevorzugen. Anti-Fab note: Temperatur, Bedingungen, Wind, Feuchte kommen NUR aus dem Tool-Output dieses Aufrufs — KEINE Schätz-Werte. attribution (additiv, top-level): die von der GeoNutzV verlangte Quellenangabe der Wetterdaten — {id:'GeoNutzV', notice:'Quelle: Deutscher Wetterdienst', url:…}. Nennst du Wetter-Werte, nenne den Deutscher Wetterdienst als Quelle; die Auflage reist mit dem Tool-Output, nicht mit dem Prompt.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
latYesLatitude of the location
lonYesLongitude of the location
langNoLanguage code for descriptions (e.g. "en", "de"). Defaults to "en".
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

A4.8/5.0
Behavior5/5

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

Annotations already cover readOnlyHint and openWorldHint, so the bar is lower; the description adds substantial operational constraints: lat/lon must come from search_place and never be guessed, weather values must only come from this tool's output (anti-fabrication), and legal attribution to Deutscher Wetterdienst/GeoNutzV is required. This goes well beyond the structured annotations.

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

Conciseness4/5

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

The description is well-structured with bold labels and front-loaded purpose. It is longer than average, and the opening overlaps somewhat with the 'When to use' section, but nearly every sentence earns its place with operational or routing guidance.

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?

For a tool without an output schema, it covers what data will be returned (temperature, conditions, wind, humidity), the attribution object, and the one-call-per-place behavior. An agent has enough context to invoke the tool correctly and interpret its results, though exact response field names are not specified.

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

Parameters4/5

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

Schema coverage is 100%, so baseline is 3. The description adds the crucial rule that lat/lon must originate from search_place rather than estimation, and clarifies unit options with temperature symbols. It mostly restates schema defaults for lang and units, but the sourcing constraint is meaningful extra semantics.

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 opening line states the tool returns current weather for coordinates and explicitly positions it as the answer source for 'wie ist das Wetter in X', distinguishing it from general knowledge. It also contrasts itself with get_weather_forecast and get_tide, so the agent can clearly differentiate it among siblings.

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 has explicit 'When to use' and 'When NOT to use' sections naming alternatives: get_weather_forecast for forecasts beyond one hour and get_tide for tides. It also provides a typical chain (search_place → this tool) and multi-call guidance, leaving no ambiguity about when to select it.

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