The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Noaa Marine MCP Server listing page.
Find NOAA tide stations and NDBC buoys, fetch tide predictions, water levels, tidal currents, and live buoy conditions via MCP. STDIO or Streamable HTTP.
Public Hosted Server: https://noaa-marine.caseyjhand.com/mcp
Seven tools covering the full US marine operational workflow — station discovery, tide predictions, observed water levels, tidal current predictions and profiles, and live offshore buoy conditions:
| Tool | Description |
|---|---|
noaa_marine_find_stations | Find CO-OPS tide/water-level/current stations and NDBC buoys near a location or by name/state. Required first step to resolve place names or coordinates to station IDs. |
noaa_marine_get_tide_predictions | High/low tide predictions for a CO-OPS tide station over a date range. Supports 6-minute interval output and multiple datums (defaults to MLLW — US nautical chart standard). |
noaa_marine_get_water_level | Observed water level (real-time or historical) for a CO-OPS station, paired with predictions to compute storm surge or anomalous drawdown. |
noaa_marine_get_currents | Tidal current predictions for a CO-OPS current station: max flood/ebb speeds, slack times, and directions. Defaults to MAX_SLACK (practical passage-planning view). |
noaa_marine_get_conditions | Live marine conditions from an NDBC buoy: wave height/period/direction, wind, sea-surface temp, air temp, and barometric pressure. |
noaa_marine_get_current_profile | Observed ocean-current depth profile from an NDBC ADCP buoy: speed and direction at each depth bin. Distinct from noaa_marine_get_currents, which is a CO-OPS tidal-current forecast. |
noaa_marine_get_ocean_observations | Sub-surface water-column observations from an NDBC station: water temperature, salinity, dissolved oxygen, chlorophyll, turbidity, and pH at each reported depth. The water-column counterpart to noaa_marine_get_conditions (surface weather and sea state). |
noaa_marine_find_stationsUnified station discovery across CO-OPS (3,450+ tide/water-level stations, 4,430+ current stations) and NDBC (1,354+ active buoys worldwide).
types: data capabilities (tide, current, water_level, met, current_profile) or NDBC platform class (buoy)noaa_marine_get_tide_predictionsCO-OPS MLLW tide predictions for planning tidal windows.
date_range_exceeded for longer ranges)noaa_marine_get_water_levelObserved water level vs. predicted — the storm surge view.
noaa_marine_get_currentsCO-OPS tidal current predictions for passage planning.
ACT4176), distinct from numeric tide station IDs — use find_stations with types: ["current"] to discover themnoaa_marine_get_conditionsLive NDBC buoy observations (most recent ~45 days, updated every 10 minutes).
null when buoy sensor did not report — normal for offshore buoys)TIDE (feet) and VIS (nautical miles), which are rarely populated at offshore buoysnoaa_marine_get_current_profileObserved ocean-current depth profile from an NDBC ADCP buoy — the most recent measurement at each depth bin.
noaa_marine_get_currents: this is an NDBC observed acoustic-Doppler measurement, not a CO-OPS tidal-current predictionfind_stations with source="ndbc" and types: ["current_profile"] to discover the ones that donull for a bin when NDBC did not report that componentnoaa_marine_get_ocean_observationsSub-surface water-column observations from an NDBC station — the most recent reading at each reported depth.
noaa_marine_get_conditions: this reports what the water is doing below the surface, that one reports surface weather and sea statenull, never a fabricated zerosource="ndbc" station IDs and expect the observations_not_found error on the many stations that serve no ocean file| Type | Name | Description |
|---|---|---|
| Resource | noaa-marine://station/{station_id} | Metadata for a CO-OPS or NDBC station by ID: name, coordinates, source, data capabilities, state, and — for NDBC — physical platform class. |
All resource data is also reachable via tools. Use noaa_marine_find_stations to discover station IDs before accessing the resource.
Built on @cyanheads/mcp-ts-core:
none, jwt, oauthNOAA-specific:
find_stations fans out across both sources in parallelMM (missing sensor data) normalized to null, not passed through as stringsapplication= courtesy parameter sent on every request (configurable via NOAA_APPLICATION_ID)Agent-friendly output:
total_found on find_stations shows count before limit slice so agents know whether to re-querycoops | ndbc) on every station record, plus a data-capability type and (NDBC only) a platform class where applicable — agents can branch on data, not string parsingNo API key required. Both NOAA CO-OPS and NDBC are open, keyless data sources.
Connect directly via Streamable HTTP — no install, no API key:
Add the following to your MCP client configuration file:
Or with npx (no Bun required):
Or with Docker:
For Streamable HTTP, set the transport and start the server:
| Variable | Description | Default |
|---|---|---|
NOAA_APPLICATION_ID | Courtesy identifier sent as application= on CO-OPS requests. | noaa-marine-mcp-server |
MCP_TRANSPORT_TYPE | Transport: stdio or http. | stdio |
MCP_HTTP_PORT | Port for HTTP server. | 3010 |
MCP_AUTH_MODE | Auth mode: none, jwt, or oauth. | none |
MCP_SESSION_MODE | HTTP session mode: auto, stateful, or stateless. This server pins stateless; the framework's auto schema default resolves to stateful. | stateless |
MCP_LOG_LEVEL | Log level (RFC 5424). | info |
LOGS_DIR | Directory for log files (Node.js only). | <project-root>/logs |
OTEL_ENABLED | Enable OpenTelemetry instrumentation. | false |
See .env.example for the full list of optional overrides.
Build and run:
Run checks and tests:
The Dockerfile defaults to HTTP transport, stateless session mode, and logs to /var/log/noaa-marine-mcp-server. OpenTelemetry peer dependencies are installed by default — build with --build-arg OTEL_ENABLED=false to omit them.
| Path | Purpose |
|---|---|
src/index.ts | createApp() entry point — registers tools, resource, and initializes services. |
src/config/ | NOAA_APPLICATION_ID env var parsing with Zod. |
src/services/coops/ | CO-OPS Tides & Currents API client: station list cache, data fetch, error detection. |
src/services/ndbc/ | NDBC buoy service: active stations XML parser, realtime text parser. |
src/mcp-server/tools/ | Seven tool definitions (*.tool.ts). |
src/mcp-server/resources/ | Station metadata resource (noaa-marine-station.resource.ts). |
tests/ | Vitest tests mirroring src/. |
docs/ | Design doc and directory tree. |
See CLAUDE.md/AGENTS.md for development guidelines and architectural rules. The short version:
try/catch in tool logicctx.log for request-scoped loggingsrc/index.ts directly (no barrels for this server)MM values must normalize to null, not be passed through as stringsIssues and pull requests are welcome. Run checks and tests before submitting:
Apache-2.0 — see LICENSE for details.