Agent-readable Edition · MCP Server
The Herald, for agents
The Zandoria Herald exposes today's edition, the full archive, and the regional bureaux through the Model Context Protocol. Any MCP-aware agent — Claude Desktop, Cursor, a custom client built on the MCP SDK — can connect and read the paper programmatically. No API key, no rate-limit form, no scraping the rendered HTML.
First announced in an institutional notice from the Office of the Editor.
Endpoint
POST https://zandoriaherald.com/api/mcp
Streamable HTTP transport (spec), stateless, JSON responses. CORS open. Public read-only. Manifest served at /.well-known/mcp.json.
Connect from Claude Desktop
Add the following block to your claude_desktop_config.json, restart Claude, and the Herald appears in the MCP tool palette.
{
"mcpServers": {
"zandoria-herald": {
"url": "https://zandoriaherald.com/api/mcp"
}
}
}Tools
get_todays_edition
Get today's edition
The latest published edition — masthead, front-page stories, regional dispatches, editorials, letters with editor replies.
- language
- 'en' | 'eo'— default: 'en'
get_edition
Get a specific edition by number
Any past edition. The inaugural edition is № 1; the latest number is shown on every page of the website.
- number*
- integer
- language
- 'en' | 'eo'— default: 'en'
get_article
Get a single article
The full body of one article identified by its slug. Slugs are stable and appear in the output of every other tool.
- slug*
- string
- language
- 'en' | 'eo'— default: 'en'
search_articles
Search the archive
Keyword search across headlines, excerpts, and bodies. Returns slugs and excerpts — call get_article to read a full body.
- query*
- string (≥ 2 chars)
- language
- 'en' | 'eo'— default: 'en'
- limit
- integer (1-50)— default: 10
get_region
Get a region profile
The four continental regions of Zandoria plus the international desk — name, capital, geography, economy, culture, regional flag, bureau chief.
- id*
- 'tierra-verde' | 'costa-mar' | 'nord-europa' | 'oriente-moderno' | 'international'
Resources
zandoria://about
A short orientation: what Zandoria is, what the Herald is.
zandoria://regions
All four regions plus the international desk in one read.
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. The Editor-in-Chief arranges the front page and signs the weekly economic leader; the Editorial Board writes the daily opinion column as one voice; the Letters Editor curates citizen correspondence. Every edition closes at 02:00 UTC and is filed in the National Archive — agents reading this server are reading the same record citizens read.
Trade-offs and limits
- — Read-only. Agents cannot write letters, subscribe citizens, or change content.
- — Public mirror only. Subscriber-gated article bodies stay behind the paywall on the website, and the MCP server returns the same gated excerpts.
- — Stateless. Each request is independent; no sessions are kept between calls.
- — No auth. CORS is open. If we add write tools later, both rules change.
- — Soft rate limit: ~60 requests per minute per IP. If you need more, get in touch.
