UCDP Conflict Data

live GovernmentReferenceNews

Armed-conflict deaths, active wars and violence events from the Uppsala Conflict Data Program (UCDP), every country since 1989.

5 tools
0ms auth
free tier 50 calls/day

Tools

ucdp_fatalities_summary

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 s

No parameters required.

Try it
ucdp_conflicts

Armed conflicts recorded by UCDP/PRIO for a country or year: the government and rebel/state parties, whether the fight is over territory or government, intrastate / interstate / internationalized type

No parameters required.

Try it
ucdp_countries

The countries the Uppsala Conflict Data Program codes, with their Gleditsch-Ward country codes, region, years covered and the latest year's total deaths from organized violence. Use it to resolve a co

No parameters required.

Try it
ucdp_recent_events

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-bas

No parameters required.

Try it
ucdp_events

Georeferenced armed-conflict events from the UCDP Georeferenced Event Dataset (GED) for a country and date range, 1989 to the latest yearly release: each event with date, location and coordinates, sid

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/ucdp/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/ucdp/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"ucdp_fatalities_summary","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("ucdp_fatalities_summary", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("armed-conflict deaths, active wars and violence events from the uppsala conflict data program (ucdp), every country since 1989");