ucdp_recent_events

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

Individual violence events from the newest monthly UCDP GED Candidate release — the preliminary current-year event list, published monthly: date, place with coordinates, warring sides, type (state-based, non-state, one-sided), fatality best/low/high and the source headline. Answers “what attacks happened in Nigeria last month”, “recent conflict events in Myanmar with fatalities”. For yearly totals use ucdp_fatalities_summary; for events in earlier years use ucdp_events. Example: ucdp_recent_events({ country: “Nigeria”, limit: 20 })

Parameters

NameTypeRequiredDescription
countrystringnoCountry name or Gleditsch-Ward code; omit for all countries
type_of_violencestringnostate-based | non-state | one-sided (or 1 | 2 | 3)
min_deathsintegernoOnly events with at least this many deaths (best estimate)
limitintegernoMax events (default 50, max 500), newest first

Example call

Arguments

{
  "country": "Nigeria",
  "limit": 3
}

curl

curl -X POST https://gateway.pipeworx.io/ucdp/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"ucdp_recent_events","arguments":{"country":"Nigeria","limit":3}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('ucdp_recent_events', {
  "country": "Nigeria",
  "limit": 3
});

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build September 3, 2026