GnistAI GnistAI
Log in

Historical Events

Curated database of major historical events — wars, discoveries, revolutions, and milestones across all eras.

Overview   |   MCP   |   REST API   |   OpenAPI   |   CLI   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 6 tools tools 6 6 type: open dataset type type open dataset open dataset lifecycle: maintained lifecycle lifecycle maintained maintained Education

Data source: Curated dataset (Wikipedia, academic sources)

MCP Endpoint (Streamable HTTP) https://context.gnist.ai/mcp/historical-events/
Authentication

All requests require a Gnist-API-Key header (or api_key query parameter).

Free tier: 100 calls/day. Get your API key.

Tools (6)

get_historical_event

Get a single historical event by its ID.

Returns detailed information including title, date, era, category, region,
description, and significance.

ParameterTypeRequiredDescription
event_idstringrequiredEvent slug ID (e.g. 'moon-landing-1969', 'magna-carta').
JSON-RPC Request
{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": 1,
  "params": {
    "name": "get_historical_event",
    "arguments": {
      "event_id": "example"
    }
  }
}
search_historical_events

Search historical events by keyword.

Searches across event titles and descriptions. Case-insensitive. Results are
sorted chronologically.

ParameterTypeRequiredDescription
querystringrequiredSearch keyword — matches event title and description.
limitanyoptionalMaximum number of results (default: 20, max: 100).
JSON-RPC Request
{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": 1,
  "params": {
    "name": "search_historical_events",
    "arguments": {
      "query": "example"
    }
  }
}
list_events_by_era

List historical events filtered by era.

Valid eras: Ancient, Medieval, Early Modern, Modern, Contemporary.
Results are sorted chronologically.

ParameterTypeRequiredDescription
erastringrequiredEra name: Ancient, Medieval, Early Modern, Modern, or Contemporary.
limitanyoptionalMaximum number of results (default: 50, max: 100).
JSON-RPC Request
{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": 1,
  "params": {
    "name": "list_events_by_era",
    "arguments": {
      "era": "example"
    }
  }
}
list_events_by_category

List historical events filtered by category.

Valid categories: War & Conflict, Science & Technology, Politics, Exploration,
Culture, Economics, Religion, Natural Disaster. Results sorted chronologically.

ParameterTypeRequiredDescription
categorystringrequiredCategory: War & Conflict, Science & Technology, Politics, Exploration, Culture, Economics, Religion, or Natural Disaster.
limitanyoptionalMaximum number of results (default: 50, max: 100).
JSON-RPC Request
{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": 1,
  "params": {
    "name": "list_events_by_category",
    "arguments": {
      "category": "example"
    }
  }
}
list_events_by_year_range

List historical events within a year range (inclusive).

Use negative years for BCE dates. Results sorted chronologically.

ParameterTypeRequiredDescription
start_yearintegerrequiredStart year (use negative values for BCE, e.g. -500).
end_yearintegerrequiredEnd year (use negative values for BCE, e.g. -100).
limitanyoptionalMaximum number of results (default: 50, max: 100).
JSON-RPC Request
{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": 1,
  "params": {
    "name": "list_events_by_year_range",
    "arguments": {
      "start_year": 1,
      "end_year": 1
    }
  }
}
report_feedback

Report a bug, feature request, or general feedback for this data source.

Use this when something doesn't work as expected, when you'd like
a new feature, or when you have suggestions for improvement.

Args:
feedback: Describe the issue or suggestion.
feedback_type: One of 'bug', 'feature_request', or 'general'.

ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")
JSON-RPC Request
{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": 1,
  "params": {
    "name": "report_feedback",
    "arguments": {
      "feedback": "example"
    }
  }
}

Quick Start

Shell
curl -X POST "https://context.gnist.ai/mcp/historical-events/" \
  -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": "get_historical_event", "arguments": {"event_id": "example"}}}'
Python
import httpx

resp = httpx.post(
    "https://context.gnist.ai/mcp/historical-events/",
    headers={"Gnist-API-Key": "YOUR_API_KEY", "Content-Type": "application/json"},
    json={
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": 1,
  "params": {
    "name": "get_historical_event",
    "arguments": {
      "event_id": "example"
    }
  }
},
)
print(resp.json())

Related Toolkits (Education)

Resources