Fake Historical Event

🔮 Oracles & Advice 🌭 Mild 3,257 calls

The Fake Historical Event API returns a fictional event for any date string. Includes a deterministic year (800-1900), a place ("the Duchy of Pretzelsburg"), an action ("declared war on bread"), a significance note, a source, and a verifiability rating (always low, very low, or absent).

Add to Your MCP Client

Drop this server into Claude Desktop, Cursor, Continue, or any MCP-compatible client.

{
  "mcpServers": {
    "fake-historical-event": {
      "url": "https://api.stupidmcps.com/fake-historical-event/mcp"
    }
  }
}
{
  "mcpServers": {
    "fake-historical-event": {
      "url": "https://api.stupidmcps.com/fake-historical-event/mcp"
    }
  }
}
POST https://api.stupidmcps.com/fake-historical-event/mcp

Add the snippet to your client's MCP config (typically claude_desktop_config.json for Claude Desktop, ~/.cursor/mcp.json for Cursor). Restart the client. The tools become available to your AI assistant.

No-code option: connect via Pipeworx — one click into Claude, ChatGPT, and friends.

Or Try It Directly — No MCP Client Required

Fake Historical Event.exe
_ ×
Any date string.

Parameters

Parameter Type Required Default Description
date string Required Any date string.

Examples

curl "https://api.stupidapis.com/fake-historical-event/lookup?date=May+5"
import requests

response = requests.get(
    "https://api.stupidapis.com/fake-historical-event/lookup",
    params={"date": "May 5"}
)
print(response.json())
const response = await fetch(
  "https://api.stupidapis.com/fake-historical-event/lookup?date=May+5"
);
const data = await response.json();
console.log(data);

Response Schema

Field Type Description
date string Echoed back
year number Year of the event
event string The event itself
significance string Why it matters
source string Where it was recorded
verifiability string low / very low / absent

Example Response

{
  "date": "May 5",
  "year": 1487,
  "event": "the Duchy of Pretzelsburg declared war on bread",
  "significance": "the consequences are still being unraveled",
  "source": "a fragment of parchment recovered from a ledger",
  "verifiability": "very low"
}

MCP Access

This API is available as an MCP tool for AI assistants. Connect your agent to:

POST https://api.stupidmcps.com/fake-historical-event/mcp
POST https://api.stupidmcps.com/mcp

Use Pipeworx to connect this MCP tool to Claude, ChatGPT, and other AI assistants with no code.

...
Clippy