tagesschau
It's an MCP server for tagesschau.de
claude mcp add --transport stdio a2xdeveloper-tagesschau-mcp-server ./tagesschau
How to use
The tagesschau MCP server provides access to the latest news articles and detailed information from tagesschau.de. Once running, clients can query endpoints to fetch the most recent articles across categories and to retrieve full details for a specific article by its URL. This enables you to integrate up-to-date news content into your MCP-powered flows, enabling downstream agents to summarize, compare, or analyze current events sourced from tagesschau.
To use the server, start the binary and send requests to the exposed MCP endpoints for:
- Get Latest News: Retrieve a list of the most recent articles across available categories.
- Get Article Details: Provide the article URL to obtain more granular information such as the article body, author, publish date, and metadata.
The MCP protocol routes requests to this server and returns structured responses suitable for downstream agents. Ensure your MCP configuration references the server name you use (e.g., tagesschau) and that the server is reachable by your MCP client.
How to install
Prerequisites:
- Go installed (or a prebuilt binary available in your environment)
- git
Installation steps:
-
Clone the repository git clone https://github.com/a2xdevelopment/tagesschau-mcp-server.git cd tagesschau-mcp-server
-
Build the server go mod tidy go build -o tagesschau
The resulting executable is named 'tagesschau'
-
Run the server ./tagesschau
Ensure it starts successfully and is listening on the expected port (default configuration)
-
(Optional) Update MCP configuration Refer to the example in the README to wire the server into your MCP configuration using the proper command and environment as needed.
Additional notes
Tips:
- If you customize the server port or endpoints, ensure your MCP configuration reflects those changes.
- Keep dependencies up to date by running go mod tidy before builds.
- If you encounter network or rate-limit issues with tagesschau.de, consider implementing caching or request throttling in your MCP client to reduce load.
- The env field is available for future environment variable configuration; currently it is an empty object but can be populated as needed (e.g., API keys or feature flags).
Related MCP Servers
trpc-agent-go
trpc-agent-go is a powerful Go framework for building intelligent agent systems using large language models (LLMs) and tools.
station
Station is our open-source runtime that lets teams deploy agents on their own infrastructure with full control.
tiger-cli
Tiger CLI is the command-line interface for Tiger Cloud. It includes an MCP server for helping coding agents write production-level Postgres code.
gopls
MCP server for golang projects development: Expand AI Code Agent ability boundary to have a semantic understanding and determinisic information for golang projects.
kubernetes
A Model Context Protocol (MCP) server for the Kubernetes API.
gcp-cost
💰 An MCP server that enables AI assistants to estimate Google Cloud costs, powered by Cloud Billing Catalog API and built with Genkit for Go