fdsn_events

Pack: earthscope-fdsn · Endpoint: https://gateway.pipeworx.io/earthscope-fdsn/mcp

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/fdsn_events for the schema, then POST the same URL with its arguments for the data.

“What small earthquakes happened near Etna this week?” — earthquake catalogues published by REGIONAL seismological agencies over the FDSN standard: GFZ GEOFON (global rapid solutions), INGV (Italy, down to about M0.5), RESIF (France), KOERI (Turkey and the eastern Mediterranean). Complements the global catalogues — these agencies list the local magnitude-1-to-3 events that USGS and EMSC never publish. Returns event id, origin time, latitude/longitude/depth, magnitude and magnitude type, region name and event type.

Parameters

NameTypeRequiredDescription
datacenterstringnoWhich agency catalogue: “gfz” (default, global), “ingv” (Italy), “resif” (France), “koeri” (Turkey).
starttimestringnoEarliest origin time, YYYY-MM-DD (default: 30 days ago).
endtimestringnoLatest origin time, YYYY-MM-DD.
min_magnitudenumbernoMinimum magnitude.
max_magnitudenumbernoMaximum magnitude.
min_depth_kmnumbernoMinimum hypocentre depth in km.
max_depth_kmnumbernoMaximum hypocentre depth in km.
latitudenumbernoCentre latitude for a radial search.
longitudenumbernoCentre longitude for a radial search.
max_radius_kmnumbernoRadius in km around latitude/longitude.
min_latitudenumbernoBounding-box south edge.
max_latitudenumbernoBounding-box north edge.
min_longitudenumbernoBounding-box west edge.
max_longitudenumbernoBounding-box east edge.
limitnumbernoMax events to return (default 50, max 500).

Example call

Arguments

{
  "datacenter": "ingv",
  "starttime": "2026-09-10",
  "min_magnitude": 2,
  "limit": 5
}

curl

curl -X POST https://gateway.pipeworx.io/earthscope-fdsn/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"fdsn_events","arguments":{"datacenter":"ingv","starttime":"2026-09-10","min_magnitude":2,"limit":5}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('fdsn_events', {
  "datacenter": "ingv",
  "starttime": "2026-09-10",
  "min_magnitude": 2,
  "limit": 5
});

More examples

{
  "datacenter": "gfz",
  "starttime": "2026-09-01",
  "min_magnitude": 5.5,
  "limit": 20
}

Connect

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

{
  "mcpServers": {
    "earthscope-fdsn": {
      "url": "https://gateway.pipeworx.io/earthscope-fdsn/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 18, 2026