GnistAI GnistAI
Log in

Crisis Intelligence

Real-time global crisis monitoring. Get instant alerts on earthquakes, floods, cyclones, and wildfires alongside worldwide news coverage of unfolding events.

Overview   |   MCP Docs   |   API Docs   |   OpenAPI   |   Playground   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 4 tools tools 4 4 Government

Data source: GDACS, GDELT

MCP MCP Protocol

Endpoint https://context.gnist.ai/mcp/crisis-intelligence/
claude_desktop_config.json
{
  "mcpServers": {
    "gnist-crisis-intelligence": {
      "url": "https://context.gnist.ai/mcp/crisis-intelligence/",
      "headers": {
        "Gnist-API-Key": "YOUR_API_KEY"
      }
    }
  }
}
Shell
curl -X POST "https://context.gnist.ai/mcp/crisis-intelligence/" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -H "Gnist-API-Key: YOUR_API_KEY" \
  -d '{"jsonrpc": "2.0", "method": "tools/call", "id": 1, "params": {"name": "search_crises", "arguments": {"query": "example"}}}'

API REST API

API Root https://context.gnist.ai/rest/crisis-intelligence/

4 endpoints available:

Shell
curl "https://context.gnist.ai/rest/crisis-intelligence/search_crises?query=example" \
  -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx

resp = httpx.get(
    "https://context.gnist.ai/rest/crisis-intelligence/search_crises",
    headers={"Gnist-API-Key": "YOUR_API_KEY"},
    params={
        "query": "example"
},
)
print(resp.json())

OpenAPI Spec  ·  Full API Docs

CLI Command Line

Command gc crisis-intelligence

CLI documentation will be available when the GnistAI SDK is published.

Install
pip install gnistai

Available Tools (4)

search_crises
Search for crises combining GDACS disaster alerts, USGS earthquakes, NOAA weather alerts, and GDELT news.
ParameterTypeRequiredDescription
querystringrequiredSearch term — crisis type, country, or topic (e.g. 'earthquake Turkey', 'flood Bangladesh').
from_datestringoptionalStart date (YYYY-MM-DD). Defaults to 90 days ago. (default: "")
to_datestringoptionalEnd date (YYYY-MM-DD). Defaults to today. (default: "")
event_typesstringoptionalComma-separated: EQ (earthquake), TC (tropical cyclone), FL (flood), VO (volcano), DR (drought), WF (wildfire). (default: "")
alert_levelsstringoptionalComma-separated: Green, Orange, Red. (default: "")
countryanyoptionalFilter by country name.
news_timespanstringoptionalGDELT news lookback: 24h, 7d, 1m. (default: "7d")
max_eventsintegeroptionalMax disaster events. (default: 25)
max_articlesintegeroptionalMax news articles. (default: 10)
min_magnitudenumberoptionalMinimum earthquake magnitude for USGS data. (default: 4.5)
max_earthquakesintegeroptionalMax USGS earthquake results. (default: 10)
max_weather_alertsintegeroptionalMax NOAA weather alerts. (default: 10)
max_flood_warningsintegeroptionalMax NVE flood warnings (Norway). (default: 10)
max_smhi_warningsintegeroptionalMax SMHI weather warnings (Sweden). (default: 10)
max_dmi_warningsintegeroptionalMax DMI weather warnings (Denmark). (default: 10)
max_fmi_warningsintegeroptionalMax FMI weather warnings (Finland). (default: 10)
get_active_crises
Get currently active disaster events worldwide from GDACS.
ParameterTypeRequiredDescription
event_typesstringoptionalComma-separated: EQ, TC, FL, VO, DR, WF. Empty = all types. (default: "")
alert_levelsstringoptionalComma-separated: Green, Orange, Red. Default: Orange,Red. (default: "")
countryanyoptionalFilter by country name.
limitintegeroptionalMax events to return. (default: 50)
list_crisis_sources
List all crisis intelligence data sources and their coverage.
report_feedback
Report a bug, feature request, or general feedback for this data source.
ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")

Related