station_metadata
Pack: noaa-tides · Endpoint: https://gateway.pipeworx.io/noaa-tides/mcp
Fetch full metadata for a single NOAA station by its numeric station ID (e.g. 8454000), including location, available products, and operational status.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
station | string | yes |
Example call
Arguments
{
"station": "8454000"
}
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":"station_metadata","arguments":{"station":"8454000"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('station_metadata', {
"station": "8454000"
});
Response shape
Full JSON Schema
{
"type": "object",
"description": "Metadata for a single NOAA 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.