noaa_coastwatch_dataset_info
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_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 CoastWatch ERDDAP dataset.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
dataset_id | string | yes | ERDDAP dataset id from noaa_coastwatch_search_datasets, e.g. “erdHadISST” or “cwwcNDBCMet”. |
Example call
Arguments
{
"dataset_id": "cwwcNDBCMet"
}
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_dataset_info","arguments":{"dataset_id":"cwwcNDBCMet"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('noaa_coastwatch_dataset_info', {
"dataset_id": "cwwcNDBCMet"
});
More examples
{
"dataset_id": "erdHadISST"
}
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.