Skip to main content
Glama

noaa-climate-mcp-server

Find NOAA Climate Stations

noaa_climate_find_stations
Read-only

Search for weather observation stations by location, bounding box, dataset, and data type. Returns station IDs, names, coordinates, elevation, and data coverage dates. Filter by locationId (e.g., "FIPS:37" for all NC stations), extent (lat/lon bounding box), datasetId, datatypeId, and date range. Station IDs returned here are used as stationId in noaa_climate_fetch_data. A station must have data for the dataset and date range you want — filter by datasetId and startDate/endDate to ensure compatibility. Common station ID formats: GHCND:USW00024233, COOP:010008.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of results to return (1–1000). Defaults to 25.
extentNoBounding box filter as "minLat,minLon,maxLat,maxLon" (e.g., "47.5,-122.4,47.7,-122.1" for central Seattle). Optional.
offsetNoZero-based index of the first result to return for pagination. Defaults to 0.
endDateNoFilter to stations with data on or before this ISO date (YYYY-MM-DD). Optional.
datasetIdNoFilter to stations that have data in this dataset (e.g., "GHCND" for daily observations). Optional.
sortFieldNoSort results by this field. Optional.
sortOrderNoSort direction. Optional; defaults to asc.
startDateNoFilter to stations with data on or after this ISO date (YYYY-MM-DD). Optional.
datatypeIdNoFilter to stations that record these data types (e.g., ["TMAX", "TMIN", "PRCP"]). Optional.
locationIdNoFilter to stations within this location ID (e.g., "FIPS:37" for NC, "CITY:US530018" for Seattle). Obtain from noaa_climate_find_locations. Optional.
datacategoryIdNoFilter to stations with data in this category (e.g., "TEMP"). Optional.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
errorNoPresent when the call failed. Absent on success.
noticeNoGuidance when no stations matched — echoes applied filters and suggests how to broaden.
resultsNoMatching stations.
metadataNoPagination metadata. Present when the API returns it.
exhaustedNoTrue when the requested offset is past the end of a non-empty result set — the page is empty but matches exist. Omitted otherwise.
totalCountNoTotal number of matching stations before the page limit.

TDQS

A4.1/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, so the agent knows this is a read-only search that may return changing results. The description adds that station IDs are used in noaa_climate_fetch_data and returns coverage date fields, but it doesn't disclose any additional behavioral nuances (e.g., pagination behavior, ordering defaults) beyond what the schema and annotations already imply. This is slightly above baseline given the annotations exist.

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 a single dense paragraph but is well-organized: purpose first, then filter list, then the compatibility advice, then common ID formats. No redundant filler; each sentence earns its place. Slightly long but justified by the tool's complexity.

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 an 11-parameter search tool with an output schema, the description covers the key functional aspects: filtering by location/extent/dataset/datatype/date, the returned fields, and the station ID formats used downstream. It omits explicit guidance on pagination (offset/limit) and sorting, but the schema documents those with defaults, and the output schema exists so return types are known. Overall complete for an agent to call it correctly.

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 all 11 parameters are documented. The description adds real value by providing concrete examples for locationId ('FIPS:37'), extent ('47.5,-122.4,47.7,-122.1'), datasetId ('GHCND'), and datatypeId (['TMAX','TMIN','PRCP']). It also clarifies that date filters should be combined with datasetId to ensure data exists. This exceeds what the bare schema provides.

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 states a specific verb ('Search for... stations') with a clear resource and lists both the filter dimensions (location, bounding box, dataset, data type) and the return fields (IDs, names, coordinates, elevation, coverage dates). It is immediately distinguishable from siblings like noaa_climate_find_locations (locations) and noaa_climate_get_station (single station detail).

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 clear context for when to use the tool: when you need to find stations by filters. It gives practical advice ('filter by datasetId and startDate/endDate to ensure compatibility') and explains the relationship to noaa_climate_fetch_data. However, it does not explicitly state when NOT to use it or name alternatives (e.g., noaa_climate_get_station for a specific station).

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.