GnistAI GnistAI
Log in

Historical Figures

Curated database of notable historical figures — leaders, scientists, artists, philosophers, and explorers.

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-figures/
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_figure

Get detailed information about a historical figure by ID.

Returns biographical data including birth/death years, nationality, field, era, and description.

ParameterTypeRequiredDescription
figure_idstringrequiredSlug ID of the historical figure (e.g. 'julius-caesar', 'albert-einstein').
JSON-RPC Request
{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": 1,
  "params": {
    "name": "get_historical_figure",
    "arguments": {
      "figure_id": "example"
    }
  }
}
search_historical_figures

Search historical figures by keyword.

Searches across names, achievements, and descriptions. Case-insensitive.

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

List historical figures by their field of achievement.

Valid fields include: Politics & Leadership, Science & Mathematics, Arts & Literature,
Philosophy, Military, Exploration, Religion, Activism, Business & Economics.

ParameterTypeRequiredDescription
fieldstringrequiredField of achievement (e.g. 'Science & Mathematics', 'Arts & Literature', 'Philosophy').
limitanyoptionalMaximum number of results (default: 50, max: 100).
JSON-RPC Request
{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": 1,
  "params": {
    "name": "list_figures_by_field",
    "arguments": {
      "field": "example"
    }
  }
}
list_figures_by_era

List historical figures by historical era.

Valid eras: Ancient, Medieval, Renaissance, Early Modern, Modern, Contemporary.

ParameterTypeRequiredDescription
erastringrequiredHistorical era (e.g. 'Ancient', 'Medieval', 'Renaissance', 'Modern', 'Contemporary').
limitanyoptionalMaximum number of results (default: 50, max: 100).
JSON-RPC Request
{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": 1,
  "params": {
    "name": "list_figures_by_era",
    "arguments": {
      "era": "example"
    }
  }
}
list_figures_by_nationality

List historical figures by nationality.

Partial matching — e.g. 'american' matches 'American', 'Serbian-American', etc.

ParameterTypeRequiredDescription
nationalitystringrequiredNationality to filter by (case-insensitive, partial match).
limitanyoptionalMaximum number of results (default: 50, max: 100).
JSON-RPC Request
{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": 1,
  "params": {
    "name": "list_figures_by_nationality",
    "arguments": {
      "nationality": "example"
    }
  }
}
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-figures/" \
  -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_figure", "arguments": {"figure_id": "example"}}}'
Python
import httpx

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

Related Toolkits (Education)

Resources