News Aggregator MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| fetch_feedA | Ruft einen beliebigen RSS/Atom-Feed ab und gibt strukturierte Artikel zurück. Args: feed_url: URL des RSS/Atom Feeds (z.B. https://techcrunch.com/feed/) max_articles: Maximale Anzahl Artikel (Standard: 10, max: 50) |
| get_news_by_categoryB | Aggregiert Nachrichten aus vordefinierten Quellen einer Kategorie. Args: category: Kategorie — tech, ai, general, business, crypto, science max_per_feed: Artikel pro Feed (Standard: 3) |
| search_rss_feedsB | Durchsucht Nachrichten in allen Kategorien nach einem Suchbegriff. Args: query: Suchbegriff (z.B. "AI regulation", "Bitcoin", "climate") categories: Kommagetrennte Kategorien oder "all" für alle max_results: Maximale Gesamtergebnisse (Standard: 10) |
| list_feed_catalogA | Gibt den vollständigen Katalog vordefinierter Nachrichten-Feeds zurück. |
| get_hackernews_topB | Ruft Top-Stories von Hacker News ab. Args: story_type: Art der Stories — top, new, best, ask, show, jobs (Standard: top) limit: Anzahl Stories (Standard: 10, max: 30) |
| get_hackernews_storyA | Ruft Details zu einer spezifischen HackerNews-Story ab. Args: story_id: Numerische ID der HN-Story (z.B. 39876543) |
| get_hackernews_trendingB | Sucht HackerNews Top-Stories nach Keywords. Args: keywords: Suchbegriffe kommagetrennt (z.B. "AI, Claude, MCP") limit: Maximale Treffer (Standard: 5) |
| search_global_newsA | Durchsucht globale Nachrichten via GDELT — deckt 65+ Sprachen und 100+ Länder ab. Args: query: Suchanfrage (z.B. "AI regulation", "climate change Germany") mode: Suchmodus — artlist (Artikelliste), artgallery (mit Bildern) max_records: Maximale Ergebnisse (Standard: 10, max: 250) language: Sprachfilter (z.B. "german", "english", leer = alle) |
| get_news_timelineA | Analysiert News-Volumen über Zeit für ein Thema (Trend-Analyse). Args: query: Thema oder Suchbegriff timespan: Zeitraum — 15min, 1h, 4h, 1d, 3d, 7d, 1m (Standard: 1d) |
| get_news_by_countryA | Ruft Nachrichten aus einem bestimmten Land ab. Args: country_code: 2-Buchstaben Ländercode (z.B. DE, US, GB, FR, JP) query: Optionaler Zusatz-Suchbegriff max_records: Maximale Ergebnisse (Standard: 10) |
| get_trending_topicsB | Ermittelt aktuelle Trending-Themen weltweit via GDELT. Args: timespan: Zeitraum — 1h, 4h, 1d, 3d, 7d (Standard: 1d) tone_filter: Stimmungsfilter — positive, negative, neutral (leer = alle) |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 11 tools
Most tools have clearly distinct purposes, but 'search_global_news' and 'search_rss_feeds' both search news using different backends (GDELT vs. RSS), which could cause initial confusion. Additionally, 'get_news_timeline' and 'get_trending_topics' both offer trend analysis, with one being query-specific and the other general. However, descriptions help mitigate overlap.
All tool names follow a consistent 'verb_noun' pattern in snake_case, such as 'fetch_feed', 'get_hackernews_top', 'search_global_news', and 'list_feed_catalog'. No mixed conventions or vague verbs are used.
11 tools is well-scoped for a news aggregator. It covers fetching arbitrary feeds, searching globally, searching RSS feeds, retrieving news by category/country, analyzing trends, and listing available feeds—without being overwhelming or too sparse.
The tool set provides comprehensive coverage of common news aggregation needs: arbitrary feed fetching, global search via GDELT, RSS search, category/country filtering, trend analysis, and a feed catalog. No significant gaps are apparent for the stated purpose.