GnistAI GnistAI
Log in

NOAA Tides & Currents

Tidal predictions, observed water levels, and coastal station meteorological data for U.S. coastlines.

Overview   |   MCP Docs   |   API Docs   |   OpenAPI   |   Playground   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 5 tools tools 5 5 Environment

Data source: NOAA CO-OPS Tides & Currents

MCP MCP Protocol

Endpoint https://context.gnist.ai/mcp/noaa-tides/
claude_desktop_config.json
{
  "mcpServers": {
    "gnist-noaa-tides": {
      "url": "https://context.gnist.ai/mcp/noaa-tides/",
      "headers": {
        "Gnist-API-Key": "YOUR_API_KEY"
      }
    }
  }
}
Shell
curl -X POST "https://context.gnist.ai/mcp/noaa-tides/" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -H "Gnist-API-Key: YOUR_API_KEY" \
  -d '{"jsonrpc": "2.0", "method": "tools/call", "id": 1, "params": {"name": "get_tide_predictions", "arguments": {"station": "example", "begin_date": "example", "end_date": "example"}}}'

API REST API

API Root https://context.gnist.ai/rest/noaa-tides/

5 endpoints available:

Shell
curl "https://context.gnist.ai/rest/noaa-tides/get_tide_predictions?station=example&begin_date=example&end_date=example" \
  -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx

resp = httpx.get(
    "https://context.gnist.ai/rest/noaa-tides/get_tide_predictions",
    headers={"Gnist-API-Key": "YOUR_API_KEY"},
    params={
        "station": "example",
        "begin_date": "example",
        "end_date": "example"
},
)
print(resp.json())

OpenAPI Spec  ·  Full API Docs

CLI Command Line

Command gc noaa-tides

CLI documentation will be available when the GnistAI SDK is published.

Install
pip install gnistai

Available Tools (5)

get_tide_predictions
Get tide predictions for a NOAA CO-OPS station.
ParameterTypeRequiredDescription
stationstringrequiredNOAA station ID (e.g. '9414290' for San Francisco, '8518750' for The Battery NYC).
begin_datestringrequiredStart date in yyyyMMdd format (e.g. '20260320').
end_datestringrequiredEnd date in yyyyMMdd format (e.g. '20260321'). Max 1 year for high/low.
datumstringoptionalTidal datum reference. Common: MLLW (default), MSL, NAVD, MHHW. (default: "MLLW")
intervalstringoptionalPrediction interval: 'hilo' for high/low only, 'h' for hourly, or minutes (1,5,6,10,15,30,60). (default: "hilo")
unitsstringoptionalUnits: 'metric' (meters, Celsius) or 'english' (feet, Fahrenheit). (default: "metric")
get_water_levels
Get observed (actual) water level data from a NOAA tide station.
ParameterTypeRequiredDescription
stationstringrequiredNOAA station ID (e.g. '9414290' for San Francisco).
begin_datestringrequiredStart date in yyyyMMdd format.
end_datestringrequiredEnd date in yyyyMMdd format. Max 1 month for 6-minute data.
datumstringoptionalTidal datum reference. Common: MLLW (default), MSL, NAVD. (default: "MLLW")
unitsstringoptionalUnits: 'metric' or 'english'. (default: "metric")
get_station_data
Get meteorological observations from a NOAA coastal station.
ParameterTypeRequiredDescription
stationstringrequiredNOAA station ID (e.g. '9414290').
productstringrequiredData product: 'water_temperature', 'air_temperature', 'wind', 'air_pressure', 'humidity'.
datestringoptionalDate filter: 'latest' for most recent, 'today', 'recent' (last 72h). (default: "latest")
unitsstringoptionalUnits: 'metric' or 'english'. (default: "metric")
search_stations
Search for NOAA tide prediction stations.
ParameterTypeRequiredDescription
stateanyoptionalFilter by US state abbreviation (e.g. 'CA', 'NY', 'FL').
max_resultsintegeroptionalMaximum number of stations to return (1-500). (default: 50)
report_feedback
Report a bug, feature request, or general feedback for this data source.
ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")

Related