Data source: Curated dataset (Wikipedia, academic sources)
https://context.gnist.ai/mcp/historical-figures/
AuthenticationAll 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_figuresearch_historical_figureslist_figures_by_fieldlist_figures_by_eralist_figures_by_nationalityreport_feedback
get_historical_figureGet detailed information about a historical figure by ID.
Returns biographical data including birth/death years, nationality, field, era, and description.
| Parameter | Type | Required | Description |
|---|---|---|---|
figure_id | string | required | Slug ID of the historical figure (e.g. 'julius-caesar', 'albert-einstein'). |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "get_historical_figure",
"arguments": {
"figure_id": "example"
}
}
}search_historical_figuresSearch historical figures by keyword.
Searches across names, achievements, and descriptions. Case-insensitive.
| Parameter | Type | Required | Description |
|---|---|---|---|
query | string | required | Search keyword — matches name, known_for, or description. |
limit | any | optional | Maximum number of results (default: 20, max: 100). |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "search_historical_figures",
"arguments": {
"query": "example"
}
}
}list_figures_by_fieldList historical figures by their field of achievement.
Valid fields include: Politics & Leadership, Science & Mathematics, Arts & Literature,
Philosophy, Military, Exploration, Religion, Activism, Business & Economics.
| Parameter | Type | Required | Description |
|---|---|---|---|
field | string | required | Field of achievement (e.g. 'Science & Mathematics', 'Arts & Literature', 'Philosophy'). |
limit | any | optional | Maximum number of results (default: 50, max: 100). |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "list_figures_by_field",
"arguments": {
"field": "example"
}
}
}list_figures_by_eraList historical figures by historical era.
Valid eras: Ancient, Medieval, Renaissance, Early Modern, Modern, Contemporary.
| Parameter | Type | Required | Description |
|---|---|---|---|
era | string | required | Historical era (e.g. 'Ancient', 'Medieval', 'Renaissance', 'Modern', 'Contemporary'). |
limit | any | optional | Maximum number of results (default: 50, max: 100). |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "list_figures_by_era",
"arguments": {
"era": "example"
}
}
}list_figures_by_nationalityList historical figures by nationality.
Partial matching — e.g. 'american' matches 'American', 'Serbian-American', etc.
| Parameter | Type | Required | Description |
|---|---|---|---|
nationality | string | required | Nationality to filter by (case-insensitive, partial match). |
limit | any | optional | Maximum number of results (default: 50, max: 100). |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "list_figures_by_nationality",
"arguments": {
"nationality": "example"
}
}
}report_feedbackReport 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'.
| Parameter | Type | Required | Description |
|---|---|---|---|
feedback | string | required | |
feedback_type | string | optional | (default: "general") |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "report_feedback",
"arguments": {
"feedback": "example"
}
}
}Quick Start
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"}}}'
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())