ioos_erddap_griddap_point
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_griddap_point for the schema, then POST the same URL with its arguments for the data.
One gridded value at one time, latitude and longitude from an IOOS regional model or radar
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
dataset_id | string | yes | Griddap dataset id, e.g. “roms_hiig” on the pacioos node. |
variable | string | yes | Gridded variable name, e.g. “temp” or “salt”. Case-sensitive; see ioos_erddap_dataset_info. |
time | string | no | ISO timestamp, or the literal “last” for the newest available step (default). |
latitude | number | yes | Decimal degrees north. |
longitude | number | yes | Decimal degrees east (negative for the western hemisphere). |
depth | number | no | Depth in metres — REQUIRED for 4-D ocean model grids such as PacIOOS ROMS, whose axes |
Example call
Arguments
{
"dataset_id": "roms_hiig",
"node": "pacioos",
"variable": "temp",
"time": "last",
"depth": 0.25,
"latitude": 21,
"longitude": -158.3
}
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_griddap_point","arguments":{"dataset_id":"roms_hiig","node":"pacioos","variable":"temp","time":"last","depth":0.25,"latitude":21,"longitude":-158.3}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ioos_erddap_griddap_point', {
"dataset_id": "roms_hiig",
"node": "pacioos",
"variable": "temp",
"time": "last",
"depth": 0.25,
"latitude": 21,
"longitude": -158.3
});
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.