送信

Zandoria Herald

@luigipascal

Read-only Model Context Protocol access to the Zandoria Herald, the national newspaper of the Republic of Zandoria. Connect any MCP-aware client — Claude Desktop, Cursor, custom SDK clients — to a public Streamable-HTTP endpoint and read the same edition citizens read. Five tools cover today's edition, any historical edition by number, full article bodies by slug, keyword search across the archive, and region profiles for the four continental bureaux. Bilingual (English / Esperanto). Stateless, CORS-open, no authentication required. Editions close at 02:00 UTC and are filed in the National Archive.
概要

`# 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

NameWhat it does
get_todays_editionLatest published edition — masthead labels, front-page stories, regional dispatches, editorials, letters with editor replies. Pass language: "eo" for the Esperanto edition.
get_editionAny past edition by its sequential number.
get_articleFull body of a single article by its slug.
search_articlesKeyword search across headlines, excerpts and bodies. Returns slugs and excerpts — chain with get_article for the full body.
get_regionRegion profile for one of the four bureaux — name, capital, geography, economy, culture, regional flag, bureau chief.

Resources

  • zandoria://about — short orientation
  • zandoria://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"
    }
  }
}