noaa_coastwatch_griddap_point

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_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 — sea surface temperature,

Parameters

NameTypeRequiredDescription
dataset_idstringyesGriddap dataset id, e.g. “erdHadISST”.
variablestringyesGridded variable name, e.g. “sst”. Case-sensitive; see noaa_coastwatch_dataset_info.
timestringnoISO timestamp, e.g. “2024-01-16”, or the literal “last” for the newest available step (default).
latitudenumberyesDecimal degrees north, -90 to 90.
longitudenumberyesDecimal degrees east, -180 to 180 (some grids use 0-360).
depthnumbernoDepth in metres, only for datasets whose axes include depth or altitude.

Example call

Arguments

{
  "dataset_id": "erdHadISST",
  "variable": "sst",
  "time": "2024-01-16",
  "latitude": 36.5,
  "longitude": -122.5
}

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_griddap_point","arguments":{"dataset_id":"erdHadISST","variable":"sst","time":"2024-01-16","latitude":36.5,"longitude":-122.5}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('noaa_coastwatch_griddap_point', {
  "dataset_id": "erdHadISST",
  "variable": "sst",
  "time": "2024-01-16",
  "latitude": 36.5,
  "longitude": -122.5
});

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.

Regenerated from source · build September 18, 2026