ioos_erddap_tabledap
Pack: ioos-erddap · Endpoint: https://gateway.pipeworx.io/ioos-erddap/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/ioos_erddap_tabledap for the schema, then POST the same URL with its arguments for the data.
Rows from an IOOS tabledap dataset — station timeseries, glider profiles, water quality and
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
dataset_id | string | yes | Tabledap dataset id from ioos_erddap_search_datasets. |
variables | array | no | Columns to return, exactly as ioos_erddap_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": "processed_asset_inventory",
"node": "national",
"limit": 5
}
curl
curl -X POST https://gateway.pipeworx.io/ioos-erddap/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"ioos_erddap_tabledap","arguments":{"dataset_id":"processed_asset_inventory","node":"national","limit":5}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ioos_erddap_tabledap', {
"dataset_id": "processed_asset_inventory",
"node": "national",
"limit": 5
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"ioos-erddap": {
"url": "https://gateway.pipeworx.io/ioos-erddap/mcp"
}
}
}
See Getting Started for client-specific install steps.