ioos_erddap_dataset_info
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_dataset_info for the schema, then POST the same URL with its arguments for the data.
Variable names, units, axes, time coverage and licence for one IOOS ERDDAP dataset.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
dataset_id | string | yes | ERDDAP dataset id from ioos_erddap_search_datasets, e.g. “processed_asset_inventory”. |
Example call
Arguments
{
"dataset_id": "processed_asset_inventory",
"node": "national"
}
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_dataset_info","arguments":{"dataset_id":"processed_asset_inventory","node":"national"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ioos_erddap_dataset_info', {
"dataset_id": "processed_asset_inventory",
"node": "national"
});
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.