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

NameTypeRequiredDescription
dataset_idstringyesGriddap dataset id, e.g. “roms_hiig” on the pacioos node.
variablestringyesGridded variable name, e.g. “temp” or “salt”. Case-sensitive; see ioos_erddap_dataset_info.
timestringnoISO timestamp, or the literal “last” for the newest available step (default).
latitudenumberyesDecimal degrees north.
longitudenumberyesDecimal degrees east (negative for the western hemisphere).
depthnumbernoDepth 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.

Regenerated from source · build September 18, 2026