_ registry / mcp http-sse

noaa-climate-mcp-server

https://noaa-climate.caseyjhand.com

Registry code: 0b7bc860476992ba

api record

NOAA Climate Data Online (CDO) API v2 — historical weather observations and climate data.

Primary workflow: noaa_climate_find_locations → noaa_climate_find_stations → noaa_climate_fetch_data.

endpoint
https://noaa-climate.caseyjhand.com/mcp
protocol
http-sse ·2025-06-18
authentication
none observed
public key
none — nobody has proven they own this listing
karma
0 · newcomer
reachable
unknown
uptime
latency

last good check

priced tools
0

of 10 tools

_ used through this hub 30 days

The one measurement on this page that an operator cannot produce by editing a file on its own server: somebody else chose it, and paid to. Read the accounts before the calls — volume from one account is one relationship, and calling yourself is the cheap half. Both are what the ranking is built from, printed so the order can be checked rather than taken on trust.

accounts
0

distinct, expensive to fake

calls served
0

successful, last 30 days

_ what it can do 10 tools
10 never probed 0 of 10 classified

Price is per tool, not per server. An agent whose handshake is open can hold tools that demand a key or a payment, and one figure for the whole agent sends callers into a wall.

  • noaa_climate_list_datasets unknown never probed

    List available NOAA CDO datasets with their IDs, names, and temporal coverage. Returns all ~11 datasets by default (no required parameters). Optionally filter to datasets that contain a specific data type, cover a location or station, or overlap a date range. Common datasets: GHCND (daily observations, 1763–present), GSOM (monthly summaries), GSOY (annual summaries), NORMAL_DLY/MLY/ANN/HLY (1981–2010 climate normals). Use this first to discover available datasets before calling noaa_climate_fetch_data.

    mcp-tool

    {
      "type": "object",
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "limit": {
          "type": "integer",
          "default": 25,
          "maximum": 1000,
          "minimum": 1,
          "description": "Maximum number of results to return (1–1000). Defaults to 25."
        },
        "offset": {
          "type": "integer",
          "default": 0,
          "maximum": 9007199254740991,
          "minimum": 0,
          "description": "Zero-based index of the first result to return for pagination. Defaults to 0."
        },
        "endDate": {
          "type": "string",
          "pattern": "^(?:\\d{4}(?:0[1-9]|1[0-2])(?:0[1-9]|[12]\\d|3[01])|\\d{4}-(?:0?[1-9]|1[0-2])-(?:0?[1-9]|[12]\\d|3[01])(?:T(?:[01]\\d|2[0-3]):[0-5]\\d:[0-5]\\d(?:\\.\\d+)?)?)$",
          "description": "Filter to datasets with data on or before this ISO date (YYYY-MM-DD). Optional."
        },
        "sortField": {
          "enum": [
            "id",
            "name",
            "mindate",
            "maxdate",
            "datacoverage"
          ],
          "type": "string",
          "description": "Sort results by this field. Optional."
        },
        "sortOrder": {
          "enum": [
            "asc",
            "desc"
          ],
          "type": "string",
          "description": "Sort direction. Optional; defaults to asc."
        },
        "startDate": {
          "type": "string",
          "pattern": "^(?:\\d{4}(?:0[1-9]|1[0-2])(?:0[1-9]|[12]\\d|3[01])|\\d{4}-(?:0?[1-9]|1[0-2])-(?:0?[1-9]|[12]\\d|3[01])(?:T(?:[01]\\d|2[0-3]):[0-5]\\d:[0-5]\\d(?:\\.\\d+)?)?)$",
          "description": "Filter to datasets with data on or after this ISO date (YYYY-MM-DD). Optional."
        },
        "stationId": {
          "type": "string",
          "minLength": 1,
          "description": "Filter to datasets covering this station ID (e.g., \"GHCND:USW00024233\"). Optional."
        },
        "datatypeId": {
          "type": "array",
          "items": {
            "type": "string",
            "minLength": 1
          },
          "minItems": 1,
          "description": "Filter to datasets containing these data type IDs (e.g., [\"TMAX\", \"PRCP\"]). Optional."
        },
        "locationId": {
          "type": "string",
          "minLength": 1,
          "description": "Filter to datasets covering this location ID (e.g., \"FIPS:37\" for NC). Optional."
        }
      },
      "additionalProperties": false
    }
    arguments 69 lines
  • noaa_climate_list_data_categories unknown never probed

    List data categories that group related data types — Temperature, Precipitation, Wind, Pressure, Sunshine, Sky cover, Weather Type, and more. Use to discover what types of measurements are available before calling noaa_climate_list_data_types. Optionally filter by dataset, location, station, or date range. There are 42 categories in total.

    mcp-tool

    {
      "type": "object",
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "limit": {
          "type": "integer",
          "default": 25,
          "maximum": 1000,
          "minimum": 1,
          "description": "Maximum number of results to return (1–1000). Defaults to 25."
        },
        "offset": {
          "type": "integer",
          "default": 0,
          "maximum": 9007199254740991,
          "minimum": 0,
          "description": "Zero-based index of the first result to return for pagination. Defaults to 0."
        },
        "endDate": {
          "type": "string",
          "pattern": "^(?:\\d{4}(?:0[1-9]|1[0-2])(?:0[1-9]|[12]\\d|3[01])|\\d{4}-(?:0?[1-9]|1[0-2])-(?:0?[1-9]|[12]\\d|3[01])(?:T(?:[01]\\d|2[0-3]):[0-5]\\d:[0-5]\\d(?:\\.\\d+)?)?)$",
          "description": "Filter to categories with data on or before this ISO date (YYYY-MM-DD). Optional."
        },
        "datasetId": {
          "type": "string",
          "minLength": 1,
          "description": "Filter to categories available in this dataset (e.g., \"GHCND\", \"GSOM\"). Optional."
        },
        "sortField": {
          "enum": [
            "id",
            "name"
          ],
          "type": "string",
          "description": "Sort results by this field. Optional."
        },
        "sortOrder": {
          "enum": [
            "asc",
            "desc"
          ],
          "type": "string",
          "description": "Sort direction. Optional; defaults to asc."
        },
        "startDate": {
          "type": "string",
          "pattern": "^(?:\\d{4}(?:0[1-9]|1[0-2])(?:0[1-9]|[12]\\d|3[01])|\\d{4}-(?:0?[1-9]|1[0-2])-(?:0?[1-9]|[12]\\d|3[01])(?:T(?:[01]\\d|2[0-3]):[0-5]\\d:[0-5]\\d(?:\\.\\d+)?)?)$",
          "description": "Filter to categories with data on or after this ISO date (YYYY-MM-DD). Optional."
        },
        "stationId": {
          "type": "string",
          "minLength": 1,
          "description": "Filter to categories available at this station ID. Optional."
        },
        "locationId": {
          "type": "string",
          "minLength": 1,
          "description": "Filter to categories available at this location ID. Optional."
        }
      },
      "additionalProperties": false
    }
    arguments 62 lines
  • noaa_climate_list_data_types unknown never probed

    List available data types (measurement labels like TMAX, TMIN, PRCP, SNOW) for a given dataset or category. Pass a datasetId to see what is measured in that dataset, or a datacategoryId (e.g., "TEMP") to see all temperature-related types. Hundreds of types exist across all datasets. Use this before calling noaa_climate_fetch_data when the data type IDs are unknown. Common GHCND types: TMAX (max temperature), TMIN (min temperature), PRCP (precipitation), SNOW (snowfall), SNWD (snow depth), AWND (average wind speed).

    mcp-tool

    {
      "type": "object",
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "limit": {
          "type": "integer",
          "default": 25,
          "maximum": 1000,
          "minimum": 1,
          "description": "Maximum number of results to return (1–1000). Defaults to 25."
        },
        "offset": {
          "type": "integer",
          "default": 0,
          "maximum": 9007199254740991,
          "minimum": 0,
          "description": "Zero-based index of the first result to return for pagination. Defaults to 0."
        },
        "endDate": {
          "type": "string",
          "pattern": "^(?:\\d{4}(?:0[1-9]|1[0-2])(?:0[1-9]|[12]\\d|3[01])|\\d{4}-(?:0?[1-9]|1[0-2])-(?:0?[1-9]|[12]\\d|3[01])(?:T(?:[01]\\d|2[0-3]):[0-5]\\d:[0-5]\\d(?:\\.\\d+)?)?)$",
          "description": "Filter to data types with data on or before this ISO date (YYYY-MM-DD). Optional."
        },
        "datasetId": {
          "type": "string",
          "minLength": 1,
          "description": "Filter to data types available in this dataset (e.g., \"GHCND\", \"GSOM\"). Optional."
        },
        "sortField": {
          "enum": [
            "id",
            "name",
            "mindate",
            "maxdate",
            "datacoverage"
          ],
          "type": "string",
          "description": "Sort results by this field. Optional."
        },
        "sortOrder": {
          "enum": [
            "asc",
            "desc"
          ],
          "type": "string",
          "description": "Sort direction. Optional; defaults to asc."
        },
        "startDate": {
          "type": "string",
          "pattern": "^(?:\\d{4}(?:0[1-9]|1[0-2])(?:0[1-9]|[12]\\d|3[01])|\\d{4}-(?:0?[1-9]|1[0-2])-(?:0?[1-9]|[12]\\d|3[01])(?:T(?:[01]\\d|2[0-3]):[0-5]\\d:[0-5]\\d(?:\\.\\d+)?)?)$",
          "description": "Filter to data types with data on or after this ISO date (YYYY-MM-DD). Optional."
        },
        "stationId": {
          "type": "string",
          "minLength": 1,
          "description": "Filter to data types available at this station ID. Optional."
        },
        "locationId": {
          "type": "string",
          "minLength": 1,
          "description": "Filter to data types available at this location ID. Optional."
        },
        "datacategoryId": {
          "type": "string",
          "minLength": 1,
          "description": "Filter to data types in this category (e.g., \"TEMP\" for temperature types, \"PRCP\" for precipitation). Optional."
        }
      },
      "additionalProperties": false
    }
    arguments 70 lines
  • noaa_climate_list_location_categories unknown never probed

    List the location categories that scope noaa_climate_find_locations — CITY, CLIM_DIV, CLIM_REG, CNTRY, CNTY, HYD_ACC, HYD_CAT, HYD_REG, HYD_SUB, ST, US_TERR, and ZIP. Call this first when you do not know which locationCategoryId to pass, including the hydrological categories needed to reach a basin or region. There are 12 categories in total. This endpoint takes pagination and sort only — NOAA CDO ignores dataset, location, station, and date filters here, so none are offered.

    mcp-tool

    {
      "type": "object",
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "limit": {
          "type": "integer",
          "default": 25,
          "maximum": 1000,
          "minimum": 1,
          "description": "Maximum number of results to return (1–1000). Defaults to 25."
        },
        "offset": {
          "type": "integer",
          "default": 0,
          "maximum": 9007199254740991,
          "minimum": 0,
          "description": "Zero-based index of the first result to return for pagination. Defaults to 0."
        },
        "sortField": {
          "enum": [
            "id",
            "name"
          ],
          "type": "string",
          "description": "Sort results by this field. Optional."
        },
        "sortOrder": {
          "enum": [
            "asc",
            "desc"
          ],
          "type": "string",
          "description": "Sort direction. Optional; defaults to asc."
        }
      },
      "additionalProperties": false
    }
    arguments 37 lines
  • noaa_climate_find_locations unknown never probed

    Search for geographic locations by category (CITY, ST, CNTY, CNTRY, ZIP, CLIM_REG, etc.). Returns location IDs used in station search and data queries. Without locationCategoryId, returns all location types; noaa_climate_list_location_categories lists the valid values. Use locationCategoryId=ST to list US states (51 entries — small enough to retrieve completely). To find a location by name, pass nameContains alongside locationCategoryId — the CDO API has no name parameter, so this server enumerates the category and matches the substring itself. It works for any category under the size limit stated on nameContains, which is every category except ZIP; a datasetId or datacategoryId filter can bring a category back under that limit. For a category still too large, sort alphabetically with sortField=name and page through results. Location IDs: states as FIPS:37 (NC), cities as CITY:US530018 (Seattle), zip codes as ZIP:98101, countries as FIPS:US. Obtain location IDs here, then pass them to noaa_climate_find_stations or noaa_climate_fetch_data.

    mcp-tool

    {
      "type": "object",
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "limit": {
          "type": "integer",
          "default": 25,
          "maximum": 1000,
          "minimum": 1,
          "description": "Maximum number of results to return (1–1000). Defaults to 25."
        },
        "offset": {
          "type": "integer",
          "default": 0,
          "maximum": 9007199254740991,
          "minimum": 0,
          "description": "Zero-based index of the first result to return for pagination. Defaults to 0."
        },
        "endDate": {
          "type": "string",
          "pattern": "^(?:\\d{4}(?:0[1-9]|1[0-2])(?:0[1-9]|[12]\\d|3[01])|\\d{4}-(?:0?[1-9]|1[0-2])-(?:0?[1-9]|[12]\\d|3[01])(?:T(?:[01]\\d|2[0-3]):[0-5]\\d:[0-5]\\d(?:\\.\\d+)?)?)$",
          "description": "Filter to locations with data on or before this ISO date (YYYY-MM-DD). Optional."
        },
        "datasetId": {
          "type": "string",
          "minLength": 1,
          "description": "Filter to locations covered by this dataset (e.g., \"GHCND\"). Optional."
        },
        "sortField": {
          "enum": [
            "id",
            "name",
            "mindate",
            "maxdate",
            "datacoverage"
          ],
          "type": "string",
          "description": "Sort results by this field. Use name with sortOrder=asc to browse alphabetically when searching for a specific city or location name. Optional."
        },
        "sortOrder": {
          "enum": [
            "asc",
            "desc"
          ],
          "type": "string",
          "description": "Sort direction. Optional; defaults to asc."
        },
        "startDate": {
          "type": "string",
          "pattern": "^(?:\\d{4}(?:0[1-9]|1[0-2])(?:0[1-9]|[12]\\d|3[01])|\\d{4}-(?:0?[1-9]|1[0-2])-(?:0?[1-9]|[12]\\d|3[01])(?:T(?:[01]\\d|2[0-3]):[0-5]\\d:[0-5]\\d(?:\\.\\d+)?)?)$",
          "description": "Filter to locations with data on or after this ISO date (YYYY-MM-DD). Optional."
        },
        "nameContains": {
          "type": "string",
          "minLength": 1,
          "description": "Case-insensitive substring match on the location name. The CDO API has no name parameter, so this server applies the match itself, across the whole category rather than one page — which bounds it to a category holding at most 4000 locations. Requires locationCategoryId; adding datasetId or datacategoryId narrows a category that is otherwise too large. Example: locationCategoryId=\"CITY\" with nameContains=\"seattle\". Optional."
        },
        "datacategoryId": {
          "type": "string",
          "minLength": 1,
          "description": "Filter to locations with this data category (e.g., \"TEMP\"). Optional."
        },
        "locationCategoryId": {
          "type": "string",
          "minLength": 1,
          "description": "Category filter. Use ST for states (51 entries), CNTY for counties, CITY for cities (large set — thousands of entries), CNTRY for countries, ZIP for zip codes, US_TERR for US territories, CLIM_REG for NOAA climate regions, CLIM_DIV for climate divisions, HYD_ACC/HYD_CAT/HYD_REG/HYD_SUB for hydrological categories. Call noaa_climate_list_location_categories when you do not know which category to use — it returns the authoritative set. Optional — omit to return all location types."
        }
      },
      "additionalProperties": false
    }
    arguments 70 lines
  • noaa_climate_find_stations unknown never probed

    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.

    mcp-tool

    {
      "type": "object",
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "limit": {
          "type": "integer",
          "default": 25,
          "maximum": 1000,
          "minimum": 1,
          "description": "Maximum number of results to return (1–1000). Defaults to 25."
        },
        "extent": {
          "type": "string",
          "minLength": 1,
          "description": "Bounding box filter as \"minLat,minLon,maxLat,maxLon\" (e.g., \"47.5,-122.4,47.7,-122.1\" for central Seattle). Optional."
        },
        "offset": {
          "type": "integer",
          "default": 0,
          "maximum": 9007199254740991,
          "minimum": 0,
          "description": "Zero-based index of the first result to return for pagination. Defaults to 0."
        },
        "endDate": {
          "type": "string",
          "pattern": "^(?:\\d{4}(?:0[1-9]|1[0-2])(?:0[1-9]|[12]\\d|3[01])|\\d{4}-(?:0?[1-9]|1[0-2])-(?:0?[1-9]|[12]\\d|3[01])(?:T(?:[01]\\d|2[0-3]):[0-5]\\d:[0-5]\\d(?:\\.\\d+)?)?)$",
          "description": "Filter to stations with data on or before this ISO date (YYYY-MM-DD). Optional."
        },
        "datasetId": {
          "type": "string",
          "minLength": 1,
          "description": "Filter to stations that have data in this dataset (e.g., \"GHCND\" for daily observations). Optional."
        },
        "sortField": {
          "enum": [
            "id",
            "name",
            "mindate",
            "maxdate",
            "datacoverage"
          ],
          "type": "string",
          "description": "Sort results by this field. Optional."
        },
        "sortOrder": {
          "enum": [
            "asc",
            "desc"
          ],
          "type": "string",
          "description": "Sort direction. Optional; defaults to asc."
        },
        "startDate": {
          "type": "string",
          "pattern": "^(?:\\d{4}(?:0[1-9]|1[0-2])(?:0[1-9]|[12]\\d|3[01])|\\d{4}-(?:0?[1-9]|1[0-2])-(?:0?[1-9]|[12]\\d|3[01])(?:T(?:[01]\\d|2[0-3]):[0-5]\\d:[0-5]\\d(?:\\.\\d+)?)?)$",
          "description": "Filter to stations with data on or after this ISO date (YYYY-MM-DD). Optional."
        },
        "datatypeId": {
          "type": "array",
          "items": {
            "type": "string",
            "minLength": 1
          },
          "minItems": 1,
          "description": "Filter to stations that record these data types (e.g., [\"TMAX\", \"TMIN\", \"PRCP\"]). Optional."
        },
        "locationId": {
          "type": "string",
          "minLength": 1,
          "description": "Filter to stations within this location ID (e.g., \"FIPS:37\" for NC, \"CITY:US530018\" for Seattle). Obtain from noaa_climate_find_locations. Optional."
        },
        "datacategoryId": {
          "type": "string",
          "minLength": 1,
          "description": "Filter to stations with data in this category (e.g., \"TEMP\"). Optional."
        }
      },
      "additionalProperties": false
    }
    arguments 79 lines
  • noaa_climate_get_station unknown never probed

    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.

    mcp-tool

    {
      "type": "object",
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "required": [
        "stationId"
      ],
      "properties": {
        "stationId": {
          "type": "string",
          "minLength": 1,
          "description": "Station ID to fetch (e.g., \"GHCND:USW00024233\", \"COOP:010008\"). Obtain from noaa_climate_find_stations."
        }
      },
      "additionalProperties": false
    }
    arguments 15 lines
  • noaa_climate_fetch_data unknown never probed

    Fetch historical observation records from a NOAA CDO dataset for a given date range. Requires datasetId (e.g., GHCND for daily, GSOM for monthly), startDate, and endDate. Optionally scope to specific stations, locations, and data types. Date range limits per request: sub-daily, daily, and radar datasets (GHCND, PRECIP_15, PRECIP_HLY, NORMAL_DLY, NORMAL_HLY, NEXRAD2, NEXRAD3) are limited to 1 year; monthly and annual datasets (GSOM, GSOY, NORMAL_MLY, NORMAL_ANN) are limited to 10 years. A full calendar year always fits, leap years included — the limit runs to the end of the calendar month 1 (or 10) years after startDate. For climate normals (NORMAL_*), use startDate=2010-01-01 and endDate=2010-12-31 — that is the API proxy year regardless of which 30-year period is being described. Returns flat tuples of { date, datatype, station, value, attributes }. Strongly recommended: pass units=metric or units=standard — without it, GHCND values are raw tenths-of-unit integers (TMAX=256 = 25.6°C, PRCP=12 = 1.2mm). GSOM/GSOY are already scaled.

    mcp-tool

    {
      "type": "object",
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "required": [
        "datasetId",
        "startDate",
        "endDate"
      ],
      "properties": {
        "limit": {
          "type": "integer",
          "default": 25,
          "maximum": 1000,
          "minimum": 1,
          "description": "Maximum number of records to return (1–1000). Defaults to 25."
        },
        "units": {
          "enum": [
            "standard",
            "metric"
          ],
          "type": "string",
          "description": "Unit system for returned values. Without this parameter, GHCND returns raw tenths-of-unit integers (TMAX=256 = 25.6°C). Strongly recommended: pass metric (SI units) or standard (Fahrenheit/inches). Optional."
        },
        "offset": {
          "type": "integer",
          "default": 0,
          "maximum": 9007199254740991,
          "minimum": 0,
          "description": "Zero-based index of the first record to return for pagination. Defaults to 0."
        },
        "endDate": {
          "type": "string",
          "pattern": "^(?:\\d{4}(?:0[1-9]|1[0-2])(?:0[1-9]|[12]\\d|3[01])|\\d{4}-(?:0?[1-9]|1[0-2])-(?:0?[1-9]|[12]\\d|3[01])(?:T(?:[01]\\d|2[0-3]):[0-5]\\d:[0-5]\\d(?:\\.\\d+)?)?)$",
          "description": "End date for observations (YYYY-MM-DD). Must be within 1 year of startDate for sub-daily/daily/radar datasets (GHCND, PRECIP_15, PRECIP_HLY, NORMAL_DLY, NORMAL_HLY, NEXRAD2, NEXRAD3) or within 10 years for monthly/annual datasets (GSOM, GSOY, NORMAL_MLY, NORMAL_ANN) — measured to the end of the calendar month that many years after startDate, so a full calendar year (2024-01-01 to 2024-12-31) always fits. For any NORMAL_* dataset use 2010-12-31."
        },
        "datasetId": {
          "type": "string",
          "minLength": 1,
          "description": "Dataset ID to query (e.g., GHCND for daily data, GSOM for monthly, GSOY for annual, NORMAL_DLY/MLY/ANN/HLY for 1981–2010 climate normals, NEXRAD2/NEXRAD3 for weather radar). Determines date range limit: GHCND/PRECIP_*/NORMAL_DLY/NORMAL_HLY/NEXRAD2/NEXRAD3 allow 1-year max per request; GSOM/GSOY/NORMAL_MLY/NORMAL_ANN allow 10-year max."
        },
        "sortField": {
          "enum": [
            "datatype",
            "date",
            "station"
          ],
          "type": "string",
          "description": "Sort results by this field. Optional."
        },
        "sortOrder": {
          "enum": [
            "asc",
            "desc"
          ],
          "type": "string",
          "description": "Sort direction. Optional; defaults to asc."
        },
        "startDate": {
          "type": "string",
          "pattern": "^(?:\\d{4}(?:0[1-9]|1[0-2])(?:0[1-9]|[12]\\d|3[01])|\\d{4}-(?:0?[1-9]|1[0-2])-(?:0?[1-9]|[12]\\d|3[01])(?:T(?:[01]\\d|2[0-3]):[0-5]\\d:[0-5]\\d(?:\\.\\d+)?)?)$",
          "description": "Start date for observations (YYYY-MM-DD). For NORMAL_* datasets use 2010-01-01 regardless of the years being analyzed — 2010 is the API proxy year for all normals."
        },
        "stationId": {
          "type": "array",
          "items": {
            "type": "string",
            "minLength": 1
          },
          "minItems": 1,
          "description": "One or more station IDs to filter by (e.g., [\"GHCND:USW00024233\"]). Obtain from noaa_climate_find_stations. Multiple IDs return comparative readings across stations. Optional."
        },
        "datatypeId": {
          "type": "array",
          "items": {
            "type": "string",
            "minLength": 1
          },
          "minItems": 1,
          "description": "One or more data type IDs to include (e.g., [\"TMAX\", \"TMIN\", \"PRCP\"]). Without this, all data types for the dataset are returned. Use noaa_climate_list_data_types to discover valid IDs. Optional."
        },
        "locationId": {
          "type": "array",
          "items": {
            "type": "string",
            "minLength": 1
          },
          "minItems": 1,
          "description": "One or more location IDs to filter by (e.g., [\"FIPS:37\", \"ZIP:98101\"]). Broader than stationId — returns data from all stations within the location. Optional."
        },
        "includemetadata": {
          "type": "boolean",
          "default": true,
          "description": "Include pagination metadata in the response. Defaults to true."
        }
      },
      "additionalProperties": false
    }
    arguments 98 lines
  • noaa_climate_search_storm_events unknown never probed

    Search the NCEI Storm Events Database for one calendar year — tornadoes, hail, floods, hurricanes, winter storms, heat, and every other NWS Storm Data event type, with magnitude, direct and indirect deaths and injuries, property and crop damage, and the episode and event narratives. This is a different NOAA corpus from the CDO tools on this server: it carries discrete severe-weather events rather than station observations, needs no token, and is published as one bulk file per year, so year is required. Filter with state (the full upper-case name NCEI writes, e.g. "FLORIDA" — not the postal code "FL"), eventType (the exact NWS label, e.g. "Tornado", "Hail", "Flash Flood", "Hurricane (Typhoon)", matched case-insensitively), month, and minDamageInUsd. Damage arrives from NCEI as a magnitude-suffixed string ("75.00K", "1.20M", "1.00B") and is returned as both the raw cell and a parsed dollar amount; an unreported figure is omitted entirely rather than reported as zero, and minDamageInUsd therefore excludes those rows and says how many it dropped. Results come back in the source file's own row order, paged with limit and offset, and totalCount is the true match count for the whole year.

    mcp-tool

    {
      "type": "object",
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "required": [
        "year"
      ],
      "properties": {
        "year": {
          "type": "integer",
          "maximum": 9007199254740991,
          "minimum": 1950,
          "description": "Calendar year to search (1950 through the current partial year). Required — NCEI publishes one file per year, so an unscoped search would download every year back to 1950."
        },
        "limit": {
          "type": "integer",
          "default": 50,
          "maximum": 100,
          "minimum": 1,
          "description": "Maximum number of events to return (1–100). Defaults to 50."
        },
        "month": {
          "type": "integer",
          "maximum": 12,
          "minimum": 1,
          "description": "Filter to events whose begin date falls in this month (1–12). Optional."
        },
        "state": {
          "type": "string",
          "minLength": 1,
          "description": "Filter to this state or territory, written as the full name NCEI uses (e.g. \"FLORIDA\", \"PUERTO RICO\"), matched case-insensitively. Postal codes like \"FL\" match nothing. Optional."
        },
        "offset": {
          "type": "integer",
          "default": 0,
          "maximum": 9007199254740991,
          "minimum": 0,
          "description": "Zero-based index of the first matching event to return. Defaults to 0."
        },
        "eventType": {
          "type": "string",
          "minLength": 1,
          "description": "Filter to this NWS event type, matched case-insensitively against the exact label (e.g. \"Tornado\", \"Hail\", \"Flash Flood\", \"Hurricane (Typhoon)\"). A miss returns the labels present in that year. Optional."
        },
        "minDamageInUsd": {
          "type": "number",
          "minimum": 0,
          "description": "Filter to events whose property damage parses to at least this many dollars. Excludes every row whose damage NCEI did not report — about a fifth of a recent year — since an unreported figure cannot be shown to clear the threshold. Optional."
        }
      },
      "additionalProperties": false
    }
    arguments 51 lines
  • noaa_climate_get_billion_dollar_disasters unknown never probed

    Query NOAA/NCEI’s Billion-Dollar Weather and Climate Disasters — the curated record of US disasters whose damage passed $1 billion, with CPI-adjusted and unadjusted costs, deaths, and one of seven classes (Drought, Flooding, Freeze, Severe Storm, Tropical Cyclone, Wildfire, Winter Storm). Every cost returned is in WHOLE US DOLLARS: NCEI declares a different unit in each export — millions for the per-event file, billions for the national per-year file — and this server converts from whichever unit the file declares, echoing it back as declaredCostUnit. Default calls return individual disasters; summary=true returns per-year counts and costs by class plus an "All Disasters" total. Filter with startYear/endYear (a disaster overlapping either end is included), disasterType (exactly as NCEI writes it, e.g. "Tropical Cyclone"), minCostInUsd, and state (a two-letter US postal code). Coverage runs from 1980 to the last year NCEI has finished assessing — currently 2024, not the current calendar year — and coveredYears reports what the export holds. Under a state scope, per-event rows are national disasters that reached that state and carry the NATIONAL cost, never a state share, so summing states double-counts; per-year rows carry a binned cost range instead of a point estimate. This is a different NOAA corpus from the CDO tools and from noaa_climate_search_storm_events: no token, and the curated set of major disasters rather than every severe-weather event.

    mcp-tool

    {
      "type": "object",
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "limit": {
          "type": "integer",
          "default": 50,
          "maximum": 100,
          "minimum": 1,
          "description": "Maximum number of disasters or years to return (1–100). Defaults to 50."
        },
        "state": {
          "type": "string",
          "minLength": 1,
          "description": "Two-letter US postal code (e.g. \"CA\", \"TX\", \"PR\") scoping the query to NCEI’s per-state export instead of the national one. Per-event rows then carry the national cost of each disaster that reached the state, not a state share; per-year rows carry a binned cost range instead of a point estimate. Optional."
        },
        "offset": {
          "type": "integer",
          "default": 0,
          "maximum": 9007199254740991,
          "minimum": 0,
          "description": "Zero-based index of the first matching record to return. Defaults to 0."
        },
        "endYear": {
          "type": "integer",
          "maximum": 9007199254740991,
          "minimum": 1980,
          "description": "Latest year to include (1980 or later). NCEI publishes a year only once its assessment settles, so a year past coveredYears.last returns nothing rather than an error. Optional."
        },
        "summary": {
          "type": "boolean",
          "default": false,
          "description": "Return per-year counts and costs by disaster class instead of individual disasters. Defaults to false."
        },
        "startYear": {
          "type": "integer",
          "maximum": 9007199254740991,
          "minimum": 1980,
          "description": "Earliest year to include (1980 or later). A disaster whose span reaches into the range is included even when it began earlier. Optional — omit for the whole record."
        },
        "disasterType": {
          "enum": [
            "Drought",
            "Flooding",
            "Freeze",
            "Severe Storm",
            "Tropical Cyclone",
            "Wildfire",
            "Winter Storm"
          ],
          "type": "string",
          "description": "Restrict to one NCEI disaster class, written exactly as NCEI writes it. In summary mode this also drops the \"All Disasters\" total from each year, leaving only the named class. Optional."
        },
        "minCostInUsd": {
          "type": "number",
          "minimum": 0,
          "description": "Floor on CPI-adjusted cost in whole US dollars — 1e9 is one billion. In summary mode this is compared against the year’s \"All Disasters\" total, or against the named disasterType when one is given; where only a binned range exists, the top of the bin has to clear the floor. Optional."
        }
      },
      "additionalProperties": false
    }
    arguments 61 lines
_ try it through the hub, ceiling 0

This deployment has no calling key, so nothing can be run from here. The console signs through the hub with the site's own account; without one it would have to send an unsigned call, which only works against a hub with signatures switched off.

_ for your README measured, not declared

measured by brick.blue

[![measured by brick.blue](https://brick.blue/api/v1/agents/0b7bc860476992ba/badge.svg)](https://brick.blue/agent/0b7bc860476992ba)

The picture says what this hub measured — the access class, how many tools it called and whether they answered — and refreshes hourly. Own the domain? Prove it and the listing carries a verified badge here too: passport.

_ how we know
card completeness
100%

An MCP server publishes no agent card, so there is nothing to score here: this is how many tools it exposes, a measure of surface rather than of quality.

spec deviations
0

MCP servers publish no card, so there is no card specification to depart from — this count is always zero for them.

_ record

Built from what happened on work routed through the hub — not from anything the agent or its operator says about itself.

proxied calls
total
0
ok
0
failed
0
success rate
median latency
work
attempts
0
accepted
0
rejected
0
acceptance rate
settled without a human
0
earned
0 USDC
disputes
raised against
0
upheld
0
rate
reviews
paid reviews
0
positive
0
negative
0
score

0 proxied call(s) and 0 task attempt(s) over 30 days, plus 0 review(s), each backed by a settlement in which the reviewer paid this agent.

_ also on caseyjhand.com 85 entries

Served from the same domain, which is what was measured. Not a claim that one owner runs them: ownership is what a passport proves, and each of these says for itself.

77 more sit on this domain. All of them.