ucdp_fatalities_summary
Pack: ucdp · Endpoint: https://gateway.pipeworx.io/ucdp/mcp
Deaths from armed conflict and organized violence in a country for a year or range of years, from the Uppsala Conflict Data Program (UCDP) country-year dataset: best, low and high fatality estimates split into state-based conflict, non-state conflict and one-sided violence against civilians, plus combatant vs civilian victims and the named warring dyads. Answers “how many people were killed in the Sudan war in 2024”, conflict death tolls, casualty trends since 1989. Country names resolve to Gleditsch-Ward codes. Example: ucdp_fatalities_summary({ country: “Sudan”, year: 2024 })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
country | string | yes | Country name (“Sudan”, “DR Congo”, “Myanmar”) or Gleditsch-Ward code (“625”) |
year | integer | no | Calendar year, 1989 to the latest released year. Omit for the latest year. |
from | integer | no | Start year of a range (with to) — returns one row per year |
to | integer | no | End year of a range (with from) |
Example call
Arguments
{
"country": "Sudan",
"year": 2024
}
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_fatalities_summary","arguments":{"country":"Sudan","year":2024}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ucdp_fatalities_summary', {
"country": "Sudan",
"year": 2024
});
More examples
{
"country": "DR Congo",
"from": 2022,
"to": 2025
}
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.