water_level

Pack: noaa-tides · Endpoint: https://gateway.pipeworx.io/noaa-tides/mcp

Fetch observed (verified) water level readings for a NOAA station over a date range (YYYYMMDD format), referenced to a tidal datum (default MLLW). Returns timestamped water-height values in english or metric units.

Parameters

NameTypeRequiredDescription
stationstringyes
begin_datestringyes
end_datestringyes
datumstringno
unitsstringno
time_zonestringno

Example call

Arguments

{
  "station": "8454000",
  "begin_date": "2024-01-01",
  "end_date": "2024-01-07"
}

curl

curl -X POST https://gateway.pipeworx.io/noaa-tides/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"water_level","arguments":{"station":"8454000","begin_date":"2024-01-01","end_date":"2024-01-07"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('water_level', {
  "station": "8454000",
  "begin_date": "2024-01-01",
  "end_date": "2024-01-07"
});

More examples

{
  "station": "8454000",
  "begin_date": "2024-01-01",
  "end_date": "2024-01-07",
  "units": "metric",
  "time_zone": "gmt"
}

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "Observed water level data for a station"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "noaa-tides": {
      "url": "https://gateway.pipeworx.io/noaa-tides/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026