ACLED
liveDefenseGovernmentArmed Conflict Location & Event Data — political violence, protests, strategic developments. Requires API key + registered email.
BYO only. ACLED requires manual API-access activation on each registered account (email [email protected] after registering). Once activated, supply myACLED email + password via query params; the pack exchanges them for a 24h access token cached in memory.
{
"mcpServers": {
"pipeworx-acled": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://gateway.pipeworx.io/acled/mcp?_email=you%40example.com&_password=your_password"
]
}
}
}Tools
search_eventsFilter ACLED events by country, region, event type, actor, ISO code, date range, fatalities.
countryoptstringCountry name(s), pipe-separated for ORregionoptstringACLED regionevent_typeoptstringBattles | Protests | Riots | etc.sub_event_typeoptstringACLED sub-event typeactoroptstringMatch actor1 (substring)isooptnumberISO 3166-1 numeric codeevent_date_fromoptstringYYYY-MM-DDevent_date_tooptstringYYYY-MM-DDyearoptnumberCalendar yearfatalities_minoptnumberMinimum fatalitieslimitoptnumber1-5000 (default 100)Try it
event_counts_by_countryAggregate event and fatality counts by country over a date range.
event_date_fromoptstringYYYY-MM-DDevent_date_tooptstringYYYY-MM-DDregionoptstringOptional regionevent_typeoptstringOptional event-typelimitoptnumberCap underlying events (default 5000)Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/acled/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'curl -X POST https://gateway.pipeworx.io/acled/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"search_events","arguments":{}}}'Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("search_events", {});// Or ask in plain English:
const answer = await px.ask("armed conflict location & event data — political violence, protests, strategic developments");Related packs
Other Pipeworx packs in the same categories (Defense, Government):