MCP server for the public news API of tagesschau.de, including regional news from ARD broadcasters
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
Disclaimer: This is a private, unofficial project. It is not an ARD product and is neither operated nor endorsed by ARD, ARD-aktuell, or NDR. It is developed independently of the author's professional employment. "ARD" and "tagesschau" are trademarks of their respective owners and are named here solely to describe the API being accessed.
This project merely connects the public API to an MCP-capable AI assistant. ARD-aktuell is responsible for the API itself, its operation, and its content; this project cannot provide information on any of those. Please raise any concerns about this project, in particular from rights holders, as a GitHub issue. Substantiated concerns will be addressed promptly.
This Model Context Protocol (MCP) server
connects your AI assistant (Claude Desktop and others) to the public news
API of tagesschau.de: current headlines, category and regional news, and
full-text search, locally via stdio, no API key required.
Example: asked "Was sind die aktuellen Schlagzeilen?", the assistant answers with the current top stories from tagesschau.de, each with title, date, summary, and a link to the article.
Language:
This MCP server connects the public news API of tagesschau.de to your AI assistant (Claude, Open Claw, etc.).
Once connected, your AI can answer questions like:
For details on the API and its terms, see Data Source and Terms of Use. No API key required.
This server calls the publicly accessible endpoint
www.tagesschau.de/api2u/, operated by ARD-aktuell. The delivered
content originates from the ARD broadcasters, remains subject to their
rights and to the terms of use of tagesschau.de:
https://www.tagesschau.de/nutzungsbedingungen/
The API is not officially documented. Community documentation is available at bund.dev (https://tagesschau.api.bund.dev). bund.dev is a civil-society documentation project, neither the operator of the API nor a rights holder of the content. Its documentation served as a reference for this project but does not grant any usage rights.
Applicable limits: at most 60 requests per hour, and no republication of the content except for offerings under a CC licence (https://tagesschau.de/creativecommons). Compliance is the responsibility of whoever operates a given instance.
The robots.txt of tagesschau.de additionally declares an express reservation of rights under Section 44b(3) of the German Copyright Act (as of 2026-05-19): text and data mining and the automated use of the content for training or fine-tuning AI models are prohibited without written consent. Expressly exempt is automated access for the sole purpose of retrieval-augmented generation (RAG) or grounding, provided the technical directives of the robots.txt are complied with and the content remains attributed to its original source. This server falls under that exemption: it passes content to the assistant exclusively together with source links. The retrieved content must not be used to train AI models.
| ποΈ Live news | Fetches breaking news, categorised news, and regional news in real time |
| π Full-text search | Search across all available articles |
| πΊ Live streams | List all available channels and HLS stream URLs |
| β±οΈ Rate limiter | Local token bucket honouring the API's 60/h limit |
| π Dual transport | stdio for local Claude Desktop; streamable-http for remote / Docker |
| π³ Docker-ready | Multi-stage image, non-root user, health-check, resource limits |
| β 181 tests | 160 unit tests + 21 live integration tests |
| π οΈ Makefile | make test, make lint, make docker-build and more |
| π No secrets | Public API, no API keys |
Also applicable to other AI assistants, edit their respective config instead. This mode uses stdio transport; the server is launched as a child process. No port is needed.
curl -LsSf https://astral.sh/uv/install.sh | shOpen your Claude Desktop config file:
| OS | Path |
|---|---|
| macOS | ~/Library/Application Support/Claude/claude_desktop_config.json |
| Windows | %APPDATA%\Claude\claude_desktop_config.json |
| Linux | ~/.config/Claude/claude_desktop_config.json |
Add the following entry (adjust the path to your clone):
Quit and reopen the application, or reload its MCP servers, depending on the application.
Ask your assistant:
"Was sind die aktuellen Nachrichten?"
Self-hosting for your own or team-internal use. The recommended default
is stdio (see Quick Start);
the streamable-http transport is an option you choose deliberately.
Security note: The HTTP transport has no authentication. Do not
expose it publicly without an authentication layer in front (e.g. a
reverse proxy). The Compose setup therefore deliberately binds the port
to 127.0.0.1 only. Whoever makes an instance reachable for third
parties becomes the responsible operator under the
terms of use.
Rate limiter limitations: stateless_http=True refers to MCP
sessions, not to the rate limiter. The token bucket is process-local
in-memory state. Two limitations follow:
restart: unless-stopped and a crash loop, this can exceed the
limit. Watch the logs.(The legacy sse transport is still supported.)
Or:
The server starts at http://localhost:8000.
Or:
For external servers: put an authentication layer in front first (see the security note above), then adjust the loopback binding in docker-compose.yml and replace localhost with your proxy's address.
All settings are read from environment variables (or a .env file).
| Variable | Default | Description |
|---|---|---|
TRANSPORT | stdio | stdio or streamable-http (sse legacy) |
HOST | 0.0.0.0 | Bind address (HTTP transports only) |
PORT | 4200 | HTTP port (HTTP transports only) |
LOG_LEVEL | INFO | DEBUG, INFO, WARNING, ERROR |
RATE_LIMIT_PER_HOUR | 60 | Local request budget per hour towards the upstream API |
USER_AGENT_CONTACT | β | Optional: contact info in the User-Agent header; omitted when unset |
The defaults apply when running directly (uv run german-newsfeed-mcp).
The Compose setup overrides them: it sets HOST=0.0.0.0 and PORT=8000
(see docker-compose.yml).
These tools are callable by your AI assistant.
get_latest_newsGet the top stories.
| Parameter | Type | Default | Description |
|---|---|---|---|
limit | int | 10 | Max items to return |
get_news_by_ressortFilter news by category.
| Parameter | Type | Default | Description |
|---|---|---|---|
ressort | str | β | inland ausland wirtschaft sport video investigativ wissen |
limit | int | 10 | Max items to return |
Ressort strings are automatically normalised to lowercase:
"Inland","INLAND"and"inland"are all equivalent.
get_regional_newsNews from a specific German state.
| Parameter | Type | Default | Description |
|---|---|---|---|
region_id | int | β | 1=BW Β· 2=BY Β· 3=BE Β· 4=BB Β· 5=HB Β· 6=HH Β· 7=HE Β· 8=MV Β· 9=NI Β· 10=NW Β· 11=RP Β· 12=SL Β· 13=SN Β· 14=ST Β· 15=SH Β· 16=TH |
ressort | str | None | Optional category filter |
limit | int | 10 | Max items to return |
search_newsFull-text search across all available articles.
| Parameter | Type | Default | Description |
|---|---|---|---|
search_text | str | β | Search query |
page_size | int | 10 | Results per page (max 30) |
result_page | int | 0 | Page offset (0-based) |
get_channelsList all live channels with stream URLs.
(No parameters)
Resources are addressable URIs that MCP clients can read directly.
| URI | Description |
|---|---|
news://tagesschau/homepage | Homepage top stories |
news://tagesschau/news/{ressort} | News by category |
news://tagesschau/regional/{region_id} | Regional news by state ID |
news://tagesschau/search/{search_text} | Search results |
news://tagesschau/channels | Available channels & streams |
Start the server:
Or:
Each module has exactly one responsibility:
| Module | Responsibility |
|---|---|
config.py | Read & expose env vars |
client.py | HTTP requests + error handling |
rate_limiter.py | Local request budget (token bucket) |
validators.py | Domain constants (VALID_RESSORTS) + input validation |
formatters.py | Turn raw API dicts into Markdown |
tools.py | Validate inputs, call client, call formatter |
resources.py | Same as tools but for MCP resources |
server.py | Composition root: assemble FastMCP, register handlers, start |
tool_<name>() async function in tools.py@mcp.tool() in server.pytests/test_tools.pyOr:
Or:
Or:
claude_desktop_config.json path is absoluteuv run python main.py in the terminal, it should start without errorsOr:
Common causes: wrong TRANSPORT value (must be streamable-http in Docker), port already in use.
The upstream API occasionally rate-limits certain endpoints. This is normal, the server returns a descriptive error message rather than crashing. Retry after a few seconds.
If the server reports "Rate limit exceeded", the local request budget (RATE_LIMIT_PER_HOUR, default 60/h) is exhausted. No request was sent upstream. Try again later.
The upstream API is not officially documented and can change without
notice. You can tell by the tools suddenly returning empty lists or
error messages although tagesschau.de is reachable, and by the live
integration tests failing (uv run pytest tests/ -m integration).
All endpoints are defined in a single place: ENDPOINTS in
src/german_newsfeed_mcp/client.py. API changes can be tracked there.
The CI job upstream-check (.github/workflows/ci.yml) runs exactly
these live tests weekly against the real API and fails loudly when the
response format no longer matches.
Apache License 2.0.
The delivered news items are content of the ARD broadcasters, subject to their rights and the terms of use of tagesschau.de, see Data Source and Terms of Use.
Thanks to AndreasFischer1985, the bund.dev community for documenting the API and above all to the journalists at the ARD broadcasters, whose work this project merely passes along.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/german-newsfeed-mcp-server)<a href="https://allmcps.com/mcp/german-newsfeed-mcp-server"><img src="https://allmcps.com/api/badge/german-newsfeed-mcp-server?style=directory" alt="German Newsfeed MCP Server on AllMCPs" /></a>