Connects Claude to NOAA's Tides & Currents API for real-time coastal water data. You get seven tools: list stations, pull metadata, fetch tide predictions, query observed water levels and currents, grab meteorological observations, and retrieve vertical datums. Useful when you're building anything that needs accurate tidal or coastal condition data, whether that's marine navigation planning, fishing apps, coastal flood analysis, or environmental monitoring. Part of the Pipeworx gateway, so you can either use this standalone or tap into their full catalog of 673+ data sources. Runs over streamable HTTP and includes a plain-English query interface if you'd rather ask questions than call tools directly.
NOAA Tides & Currents MCP.
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|---|
stations | List stations. |
station_metadata | Single-station metadata. |
predictions | Tide predictions. |
water_level | Observed water level. |
currents | Observed currents. |
met_obs | Meteorological observations. |
datums | Vertical datums for a station. |
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"noaa-tides": {
"url": "https://gateway.pipeworx.io/noaa-tides/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Noaa Tides data" })
The gateway picks the right tool and fills the arguments automatically.
MIT