RewindMap
Historical world map: states in any year, border history, dated battles, eruptions, quakes.
Should I use this
Quality & Safety
Findings (1)
- LOWin find_polity
Based on automated analysis of tool definitions and protocol compliance.
Context Cost
This is the approximate number of tokens consumed each time the server's tools are loaded into a model's context. Higher counts reduce the attention available for other tasks.
Install
One-Click Install
Add this to your `claude_desktop_config.json` file:
{
"mcpServers": {
"rewindmap": {
"url": "https://rewindmap.com/mcp"
}
}
}Remote endpoints
https://rewindmap.com/mcpstreamable-httpWhat it can do
Tool inventory
Tools (3)
🟢world_at_year(year, bbox)
List the states, empires and cultures whose borders are on the map in a given year (OpenHistoricalMap data), optionally only those overlapping a region.
Input Schema
{
"type": "object",
"properties": {
"year": {
"type": "integer",
"description": "Year. Negative is BC: -500 = 500 BC. There is no year 0."
},
"bbox": {
"type": "array",
"items": {
"type": "number"
},
"minItems": 4,
"maxItems": 4,
"description": "Bounding box [west, south, east, north] in degrees."
}
},
"required": [
"year"
]
}🟢find_polity(query)
Look up a state or empire by name or any of its Wikidata labels and aliases (substring, case-insensitive), or by Wikidata QID. Returns its lifespan, every border snapshot with its bounding box, and links.
Input Schema
{
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Name, e.g. \"Ottoman\", or a QID, e.g. \"Q12560\"."
}
},
"required": [
"query"
]
}🟢search_events(query, layer, from_year, to_year, bbox, ...)
Search dated map events: battles (Wikidata), UCDP armed-conflict events since 1989, volcanic eruptions VEI 4+ (Smithsonian GVP), significant earthquakes (NOAA), witnessed meteorite falls, and UNESCO World Heritage sites (undated). Results are sorted by year.
Input Schema
{
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Substring of the event name or detail, e.g. \"Vienna\"."
},
"layer": {
"type": "string",
"enum": [
"conflict",
"ucdp",
"volcano",
"quake",
"meteorite",
"heritage"
]
},
"from_year": {
"type": "integer",
"description": "Year. Negative is BC: -500 = 500 BC. There is no year 0."
},
"to_year": {
"type": "integer",
"description": "Year. Negative is BC: -500 = 500 BC. There is no year 0."
},
"bbox": {
"type": "array",
"items": {
"type": "number"
},
"minItems": 4,
"maxItems": 4,
"description": "Bounding box [west, south, east, north] in degrees."
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 100,
"default": 25
}
}
}Community
Evidence