recent_earthquakes

Pack: emsc · Endpoint: https://gateway.pipeworx.io/emsc/mcp

Get recent earthquakes from EMSC (European-Mediterranean Seismological Centre): the last N days above a minimum magnitude, newest first. Convenience wrapper over the FDSN event API. Global coverage, strong in Europe/Mediterranean. Times are UTC ISO 8601, depth in km. Example: recent_earthquakes({ days: 7, minmag: 4 }).

Parameters

NameTypeRequiredDescription
daysnumbernoHow many days back to look (default: 7).
minmagnumbernoMinimum magnitude to include (default: 4).
limitnumbernoMaximum number of results, 1-1000 (default: 50).

Example call

Arguments

{
  "days": 7,
  "minmag": 4
}

curl

curl -X POST https://gateway.pipeworx.io/emsc/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"recent_earthquakes","arguments":{"days":7,"minmag":4}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('recent_earthquakes', {
  "days": 7,
  "minmag": 4
});

Connect

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

{
  "mcpServers": {
    "emsc": {
      "url": "https://gateway.pipeworx.io/emsc/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 31, 2026