get_quake

Pack: geonet-nz · Endpoint: https://gateway.pipeworx.io/geonet-nz/mcp

Get detail for a single New Zealand earthquake by its GeoNet publicID — time, magnitude, depth, locality, felt intensity (MMI), location quality, and coordinates. Keyless.

Parameters

NameTypeRequiredDescription
idstringyesGeoNet quake publicID, e.g. “2026p432677” (year + “p” + sequence).

Example call

Arguments

{
  "id": "2026p432677"
}

curl

curl -X POST https://gateway.pipeworx.io/geonet-nz/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_quake","arguments":{"id":"2026p432677"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_quake', {
  "id": "2026p432677"
});

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "geonet-nz": {
      "url": "https://gateway.pipeworx.io/geonet-nz/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 9, 2026