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
| Name | Type | Required | Description |
|---|---|---|---|
country | string | no | Country name or Gleditsch-Ward code; omit for all countries |
type_of_violence | string | no | state-based | non-state | one-sided (or 1 | 2 | 3) |
min_deaths | integer | no | Only events with at least this many deaths (best estimate) |
limit | integer | no | Max 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.