Skip to main content
Glama

Get climate normals

get_climate_normals
Read-onlyIdempotent

Day-of-year climate normals (NCEI 1991-2020 30-year averages) for a US location, from the nearest station with a record. Returns normal high, normal low, and normal mean for each date in the window, plus the station and how far away it is. Use this whenever a question needs a baseline rather than a forecast: "is this warm for October?", "what is a typical high here in January?", "how does this week compare to normal?". Pair it with get_forecast to say how far above or below normal the coming days run. Covers dates by day of year, so it answers for any date, past or future -- these are long-period averages, not a forecast and not observed history for a specific year.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
endNoInclusive range end as YYYY-MM-DD. Must be supplied with start.
latYesLatitude in decimal degrees (-90 to 90). Most tools also accept a `location` place-name string instead of lat/lon.
lonYesLongitude in decimal degrees (-180 to 180). For continental US use negative values (west of the prime meridian).
daysNoRange length in days when start/end are omitted; the window opens today (default 14).
unitNoUnit system for the normals. Default imperial (°F).
startNoInclusive range start as YYYY-MM-DD. Must be supplied with end.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Added

TDQS

A4.9/5.0
Behavior5/5

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

Annotations already mark the tool as read-only, idempotent, and non-destructive, so the description's job is to add behavioral context. It does: returns data from the nearest station with a record, includes station distance, covers any date by day of year, and explicitly states these are long-period averages, not forecasts or single-year observations. This goes well beyond the annotation metadata.

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?

Every sentence earns its place: definition, return values, usage trigger, pairing guidance, and the day-of-year caveat. The most important scoping information is front-loaded in the first sentence, and despite its length, the description remains efficient and readable.

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 read-only tool with no output schema, the description fully covers what an agent needs to select and call it correctly: what it returns, when to use it, how it relates to forecasts, and the key conceptual caveat about day-of-year averaging. No critical decision-relevant context is missing.

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 the baseline is 3, but the description adds temporal semantics not present in the schema: dates are interpreted by day of year, making any past or future date valid. It also clarifies the meaning of the returned 'normal' values in terms of 30-year averages, which helps the agent reason about start/end/days parameters.

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 definition: 'Day-of-year climate normals (NCEI 1991-2020 30-year averages) for a US location, from the nearest station with a record.' It names the resource (climate normals), the scope (US location), and the return values (normal high, low, mean, station and distance). It also distinguishes itself from siblings by noting it is not a forecast and not observed history for a specific year, which differentiates it from get_forecast and get_climate_records.

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 explicitly says when to use it: 'Use this whenever a question needs a baseline rather than a forecast,' with concrete examples. It also gives pairing guidance: 'Pair it with get_forecast to say how far above or below normal the coming days run.' This gives the agent clear decision criteria versus alternatives.

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.

TDQS

A4.1/5.0
Disambiguation4/5

Most tools have clearly distinct purposes, and the detailed descriptions generally prevent misselection. A few near-overlapping pairs exist — get_current_conditions vs get_observations, and get_forecast already bundling current conditions, alerts, and outlooks — so some ambiguity remains.

Naming Consistency4/5

The overwhelming majority of tools follow a get_<object>_<modifier> pattern in snake_case, and the non-get tools still use an imperative verb_noun form. The mix of verbs (get, list, describe, find, query, search, reverse) is a minor inconsistency, but the overall pattern is predictable.

Tool Count2/5

At 32 tools, the surface is heavy and exceeds the 25+ threshold for a large tool set. The weather domain justifies much of the breadth, but several tools overlap in scope and could plausibly be consolidated, making the count feel higher than necessary.

Completeness5/5

The tool set comprehensively covers current conditions, forecasts, hourly data, climate, alerts, severe weather, air quality, tropical systems, upper-air soundings, maps, model data, geocoding, and platform status. There are no obvious dead-end workflows, and raw access via query_dataset fills most remaining gaps.