noaa_coastwatch_tabledap
Pack: noaa-coastwatch · Endpoint: https://gateway.pipeworx.io/noaa-coastwatch/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/noaa_coastwatch_tabledap for the schema, then POST the same URL with its arguments for the data.
Rows from a CoastWatch tabledap dataset — buoy and station timeseries such as the NDBC
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
dataset_id | string | yes | Tabledap dataset id, e.g. “cwwcNDBCMet” for the NDBC buoy archive. |
variables | array | no | Columns to return, exactly as noaa_coastwatch_dataset_info spells them — e.g. |
items | string | no | |
constraints | array | no | ERDDAP constraint expressions, ANDed together. String values need their own double |
items | string | no | |
limit | number | no | Max rows (default 200, max 1000). |
Example call
Arguments
{
"dataset_id": "cwwcNDBCMet",
"variables": [
"station",
"time",
"WTMP",
"ATMP",
"WSPD"
],
"constraints": [
"station=\"46012\"",
"time>=2026-09-14T00:00:00Z",
"time<=2026-09-14T06:00:00Z"
],
"limit": 10
}
curl
curl -X POST https://gateway.pipeworx.io/noaa-coastwatch/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"noaa_coastwatch_tabledap","arguments":{"dataset_id":"cwwcNDBCMet","variables":["station","time","WTMP","ATMP","WSPD"],"constraints":["station=\"46012\"","time>=2026-09-14T00:00:00Z","time<=2026-09-14T06:00:00Z"],"limit":10}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('noaa_coastwatch_tabledap', {
"dataset_id": "cwwcNDBCMet",
"variables": [
"station",
"time",
"WTMP",
"ATMP",
"WSPD"
],
"constraints": [
"station=\"46012\"",
"time>=2026-09-14T00:00:00Z",
"time<=2026-09-14T06:00:00Z"
],
"limit": 10
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"noaa-coastwatch": {
"url": "https://gateway.pipeworx.io/noaa-coastwatch/mcp"
}
}
}
See Getting Started for client-specific install steps.