stations
Pack: noaa-tides · Endpoint: https://gateway.pipeworx.io/noaa-tides/mcp
List all NOAA Tides & Currents monitoring stations; filter by type (waterlevels, currents, physical, or meteorological). Returns station IDs, names, and geographic coordinates.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
type | string | no | waterlevels (default) | currents | physical | meteorological |
format | string | no | json (default) |
Example call
Arguments
{
"type": "waterlevels"
}
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":"stations","arguments":{"type":"waterlevels"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('stations', {
"type": "waterlevels"
});
More examples
{
"type": "currents",
"format": "json"
}
Response shape
Full JSON Schema
{
"type": "object",
"description": "List of tidal/current stations from NOAA"
}
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.