Skip to main content
Glama

noaa-climate-mcp-server

Get NOAA Climate Station

noaa_climate_get_station
Read-only

Fetch full metadata for a single weather station by its ID (e.g., "GHCND:USW00024233", "COOP:010008"). Returns name, coordinates, elevation, and the full date range for which data is available. Use when you have a station ID from noaa_climate_find_stations and want its complete details, or to verify a station before querying data.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
stationIdYesStation ID to fetch (e.g., "GHCND:USW00024233", "COOP:010008"). Obtain from noaa_climate_find_stations.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idNoStation ID.
nameNoStation name.
errorNoPresent when the call failed. Absent on success.
maxdateNoLatest date data is available at this station (YYYY-MM-DD). Omitted when not provided.
mindateNoEarliest date data is available at this station (YYYY-MM-DD). Omitted when not provided.
latitudeNoStation latitude in decimal degrees. Omitted when not provided by the API.
elevationNoStation elevation. Unit depends on elevationUnit. Omitted when not provided.
longitudeNoStation longitude in decimal degrees. Omitted when not provided by the API.
datacoverageNoFractional data coverage (0–1). Omitted when not provided by the API.
elevationUnitNoUnit for elevation (e.g., "Meters"). Omitted when not provided.

TDQS

A4.5/5.0
Behavior4/5

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

With readOnlyHint=true and openWorldHint=false already declared, the bar is lower. The description adds context beyond the annotations by summarizing exactly what metadata is returned and the ID convention. No contradiction with the annotations; the return-summary adds value over the safety profile alone.

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?

Three sentences with zero waste: the core action with examples is front-loaded, the second sentence states what is returned, and the third gives usage guidance. Every sentence earns its place.

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 single-parameter, read-only tool with an output schema present, the description is complete. The agent knows the ID format, what the tool returns, and when to invoke it; the output schema covers return structure, so no further detail is needed.

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 description coverage is 100%, so the baseline is 3. The description layers on the meaning of the ID prefixes (GHCND, COOP) and reaffirms the source via find_stations, adding modest interpretive value beyond the schema's own stationId description.

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?

States a specific verb and resource: 'Fetch full metadata for a single weather station by its ID.' It names concrete ID formats with examples, lists the return content (name, coordinates, elevation, date range), and is clearly distinguishable from siblings like noaa_climate_find_stations and noaa_climate_fetch_data.

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

Usage Guidelines4/5

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

Provides an explicit workflow: use when you have an ID from noaa_climate_find_stations, for complete details or to verify a station before querying data. This gives clear when-to-use guidance and names the upstream sibling, but it stops short of an explicit when-not-to-use (e.g., directing raw data queries to noaa_climate_fetch_data).

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.6/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: fetching data, searching locations, searching stations, getting station metadata, listing categories/datasets/types, and listing location categories. No two tools overlap; an agent can easily select the correct one based on the task.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern in snake_case: fetch_data, find_locations, find_stations, get_station, list_data_categories, list_datasets, list_data_types, list_location_categories. The verbs (fetch, find, get, list) are semantically appropriate and predictable.

Tool Count5/5

With 8 tools, the server is well-scoped for a climate data API. It covers the essential discovery and retrieval workflow without unnecessary bloat. Each tool serves a clear role in fetching or finding climate data elements.

Completeness5/5

The tool set provides a complete workflow: discover datasets, data categories, data types, location categories, find locations, find stations, get station metadata, and fetch observation data. There are no obvious gaps for the stated purpose of accessing NOAA climate data.