`# Zandoria Herald — MCP Server
Read-only Model Context Protocol access to the Zandoria Herald, the national newspaper of the Republic of Zandoria. Connect any MCP-aware client and read the same edition citizens read — no scraping, no API key, no rate-limit form.
Endpoint
POST https://zandoriaherald.com/api/mcp
Streamable HTTP transport, stateless, JSON responses, CORS-open.
Manifest: /.well-known/mcp.json
Documentation: zandoriaherald.com/mcp
Connect from Claude Desktop
Add to claude_desktop_config.json and restart Claude:
{
"mcpServers": {
"zandoria-herald": {
"url": "https://zandoriaherald.com/api/mcp"
}
}
}
Tools
| Name | What it does |
|---|---|
get_todays_edition | Latest published edition — masthead labels, front-page stories, regional dispatches, editorials, letters with editor replies. Pass language: "eo" for the Esperanto edition. |
get_edition | Any past edition by its sequential number. |
get_article | Full body of a single article by its slug. |
search_articles | Keyword search across headlines, excerpts and bodies. Returns slugs and excerpts — chain with get_article for the full body. |
get_region | Region profile for one of the four bureaux — name, capital, geography, economy, culture, regional flag, bureau chief. |
Resources
zandoria://about— short orientationzandoria://regions— all four regions in one read
Prompts
cite_herald— citation template that names the edition number and the article slug
What it's good for
- Agents that summarise the day's news in a stable, citable shape
- Multilingual demos that need a parallel English / Esperanto news source
- Research on agent-readable journalism formats
- Reading the Herald inside Claude, Cursor, or any MCP-capable client without an extra browser tab
Editorial process
The Herald is edited from the federal offices in Meridian. Four regional bureaux file dispatches from Tierra Verde, Costa Mar, Nord Europa, and Oriente Moderno; an international desk files from Meridian itself. Editions close at 02:00 UTC and are filed in the National Archive — agents reading this server are reading the same record citizens read.
Trade-offs and limits
- Read-only. Agents cannot submit letters, register citizens, or change content.
- Public mirror only. Subscriber-gated article bodies stay behind the paywall on the website.
- Stateless. Each request is independent.
- No auth. Soft rate limit ~60 requests/min/IP.`
サーバー設定
{
"mcpServers": {
"zandoria-herald": {
"url": "https://zandoriaherald.com/api/mcp"
}
}
}