LocalTides MCP Server

MIT License
1

get_meteorological_data

Fetch meteorological data from NOAA Tides and Currents API for specific stations, products, and timeframes. Supports air temperature, wind, and more in JSON, XML, or CSV formats with customizable units and time zones.

Instructions

Get meteorological data

Input Schema

NameRequiredDescriptionDefault
begin_dateNoStart date (YYYYMMDD or MM/DD/YYYY)
dateNoDate to retrieve data for ("today", "latest", "recent", or specific date)
end_dateNoEnd date (YYYYMMDD or MM/DD/YYYY)
formatNoOutput format (json, xml, csv)
productYesProduct (air_temperature, wind, etc.)
rangeNoNumber of hours to retrieve data for
stationYesStation ID
time_zoneNoTime zone (gmt, lst, lst_ldt)
unitsNoUnits to use ("english" or "metric")

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "begin_date": { "description": "Start date (YYYYMMDD or MM/DD/YYYY)", "type": "string" }, "date": { "description": "Date to retrieve data for (\"today\", \"latest\", \"recent\", or specific date)", "type": "string" }, "end_date": { "description": "End date (YYYYMMDD or MM/DD/YYYY)", "type": "string" }, "format": { "description": "Output format (json, xml, csv)", "enum": [ "json", "xml", "csv" ], "type": "string" }, "product": { "description": "Product (air_temperature, wind, etc.)", "minLength": 1, "type": "string" }, "range": { "description": "Number of hours to retrieve data for", "type": "number" }, "station": { "description": "Station ID", "minLength": 1, "type": "string" }, "time_zone": { "description": "Time zone (gmt, lst, lst_ldt)", "enum": [ "gmt", "lst", "lst_ldt" ], "type": "string" }, "units": { "description": "Units to use (\"english\" or \"metric\")", "enum": [ "english", "metric" ], "type": "string" } }, "required": [ "station", "product" ], "type": "object" }
ID: xv9thnwdng