Back to MCP Servers

War Dashboard Data

Geopolitical conflict risk probabilities for AI agents. Covers 6 regions (Russia-Ukraine, Iran-Israel, China-Taiwan, etc.) with escalation/ceasefire/regime change probabilities at 1d/7d/30d horizons. Includes maritime chokepoint vessel data and political event probabilities. Upd…

finance-fintechaiagent
By cct15
11Updated 1 week agoPythonMIT

Installation

npx -y war-dashboard-data

Configuration

{
  "mcpServers": {
    "war-dashboard-data": {
      "command": "npx",
      "args": ["-y", "war-dashboard-data"]
    }
  }
}

How to use

  1. Run the installation command above (if needed)
  2. Open your Claude Code settings file (~/.claude/settings.json)
  3. Add the configuration to the mcpServers section
  4. Restart Claude Code to apply changes

Futuristic Risk Intelligence — MCP Server & Data Feed

<!-- mcp-name: io.github.cct15/war-dashboard-data -->

Geopolitical conflict risk data for AI agents via Model Context Protocol (MCP). Updated daily.

PyPI war-dashboard-data MCP server

MCP Tools

ToolDescription
get_conflict_risksRisk probabilities for 6 major geopolitical conflicts (escalation, ceasefire, regime change) with 1d/7d/30d horizons
get_political_eventsHigh-impact political, economic, and natural disaster events with probability estimates
get_maritime_traffic⚠️ Suspended — AIS snapshot data does not meet reliability standards. Returns status: unavailable.

Install

pip install war-dashboard-data

Quick Start

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "futuristic-risk": {
      "command": "war-dashboard-data"
    }
  }
}

Then ask Claude: "What's the current escalation risk for Russia-Ukraine?"

Direct API (REST)

curl https://raw.githubusercontent.com/cct15/war-dashboard-data/main/conflicts.json

Coverage

6 conflict regions: Russia-Ukraine, Iran-Israel/US, Israel-Palestine, China-Taiwan, India-Pakistan, US-Latin America

5 event types with clear risk direction:

Event TypeMeaningDirection
escalationMilitary escalation (strikes, invasion, nuclear test)risk_increase
ceasefireCeasefire or peace agreement reachedrisk_decrease
ceasefire_cancelExisting ceasefire breaks downrisk_increase
regime_changeGovernment falls or changesrisk_increase
diplomaticMajor diplomatic event (nuclear deal, treaty)neutral

Data Schema

conflicts.json

Each conflict includes:

FieldDescription
conflict_idRegion identifier (e.g. russia_ukraine, iran_israel_us)
importanceEditorial priority: high (active/major conflict, recommended for display) or low (low probability, included for data completeness)
risk_levelOverall risk: high / medium / low
probability_30d / 7d / 1dP(event occurs within time horizon)
situation_briefingDaily situation summary in Chinese, based on latest news
risk_impactStructured impact analysis: industries[], assets[], channels[] (transmission paths)
risk_events[]Breakdown by event type with per-type probabilities
risk_events[].directionrisk_increase (higher prob = more danger) or risk_decrease (higher prob = less danger)
risk_events[].change_vs_7d_agoProbability delta vs. 7 days ago
data_pointsNumber of data sources (for confidence assessment)
anomaly_detectedWhether probability diverges from news intensity

political_events.json

Political, economic, and natural disaster events with probability estimates.

FieldDescription
event_summaryEvent description (Chinese)
event_summary_enEvent description (English)
categorypolitical / economic / natural_disaster
probabilityEstimated probability of occurrence
importanceEditorial priority: high (recommended for display) or low (data completeness)
deadlineEvent deadline (YYYY-MM-DD), if applicable
data_confidencehigh / medium / low (based on trading volume)

importance field

Both conflicts.json and political_events.json include an importance field:

  • high — Editorially recommended. Active conflicts, high-probability events, or events with significant recent changes. Matches the daily intelligence report's display filter.
  • low — Included for data completeness. Low probability, no active events, or not a current focus area. Agents may still find these useful for comprehensive monitoring.

maritime.json

⚠️ Suspended: Free AIS data (45-second snapshots) produces sporadic zero-vessel readings in busy straits, which could mislead agents into inferring blockades. Returns {"status": "unavailable", "zones": []}. Will resume when a reliable AIS source is found.

Use Cases

  • Trading agents: Adjust crypto/commodity positions based on geopolitical risk changes
  • Risk management: Monitor conflict escalation probabilities for portfolio hedging
  • DeFi protocols: Dynamic collateral ratios based on geopolitical risk
  • Research agents: Track probability trends across 6 conflict regions
  • News agents: Get structured risk data instead of parsing headlines

Technical Details

  • Zero dependencies: MCP server uses only Python stdlib (works with Python 3.9+)
  • Data source: Proprietary multi-source modeling
  • Update frequency: Daily
  • Latency: Public data has ~24h delay

License

Data is free for non-commercial use. Contact for commercial licensing.

Website & Research

futuristicrisks.com — Live risk dashboard, cascade impact analysis, daily verified intelligence, and API documentation.

Research articles:

Built by Futuristic Risk Intelligence.

View source on GitHub