Skip to main content
Glama

ai-news-mcp

MCP Badge

Keeping up with AI trends is exhausting.

Claude doesn't know what happened after its training cutoff. Ask it "what's hot in AI right now?" and you get stale answers. Tell it to scrape the web for you and you wait forever.

We scrape 12 sources every 6 hours, Sonnet summarizes the content, then Opus curates the top 30 items for vibe coders and AI builders. Connect via MCP and Claude pulls fresh, curated data instantly.

Real-time AI/tech news aggregator MCP server for vibe coders & AI builders — runs on Supabase Edge Functions, free, no auth required.

Sources: HackerNews · Reddit (ClaudeAI/vibecoding/codex/claudecode/openclaw/artificial/ArtificialInteligence) · GitHub Trending · HuggingFace Spaces Trending · Lobsters · GeekNews

Cache updated every 6 hours. Curated by Opus every 6 hours.


Quick Start — no install, no login

Claude Code CLI (one command)

claude mcp add --transport http ai-news https://iiwkkrvyhktnwolsfndx.supabase.co/functions/v1/mcp

Run this once. The tools are available in every Claude Code session from that point on.

Manual config — Claude Code (~/.claude.json)

{
  "mcpServers": {
    "ai-news": {
      "type": "http",
      "url": "https://iiwkkrvyhktnwolsfndx.supabase.co/functions/v1/mcp"
    }
  }
}

Manual config — Claude Desktop (claude_desktop_config.json)

{
  "mcpServers": {
    "ai-news": {
      "type": "http",
      "url": "https://iiwkkrvyhktnwolsfndx.supabase.co/functions/v1/mcp"
    }
  }
}

Any MCP client (HTTP transport)

https://iiwkkrvyhktnwolsfndx.supabase.co/functions/v1/mcp

Related MCP server: AI News Aggregator

What problem does this solve?

Problem

ai-news-mcp

Claude has no knowledge of recent AI news

12 sources scraped every 6h, always current

Asking Claude to scrape is slow

Pre-cached in DB, MCP call returns instantly

Raw news feeds are noisy

Opus curates top 30 every 6h — only actionable items for builders

Hard to know what the AI community is buzzing about

r/ClaudeAI, r/vibecoding, r/codex, GeekNews — real-time community signal

Reading repos and pages takes time

Sonnet WebFetches each URL and writes a 1-line summary


How it works

Every 6 hours:
  1. Sonnet scrapes 12 sources → ~150 items
  2. Sonnet picks top 10 per source → WebFetches each URL → writes 1-line summary
  3. Opus curates top 30 from ~100 summarized items (judges by content, not score)
  4. Saves to news_curated table

When you call get_top_picks:
  → Returns Opus-curated items with summaries
  → Falls back to algorithmic selection if curation unavailable

Tools

Tool

Description

get_top_picks

Top N Opus-curated items with content summaries. Pre-curated every 6h for vibe coders & AI builders.

get_trending_news

All cached news from 12 sources. Filter by source name (e.g. reddit_claudeai, reddit_vibecoding)

search_today

Keyword search across today's cached titles and summaries

get_new_since

Items added after a given ISO timestamp — useful for "what's new in the last hour?"

get_repo_quickstart

GitHub repo metadata (stars, language, topics) + install commands + quickstart from README

get_paper_brief

ArXiv paper title, authors, abstract, and code repo link if available

check_cache

Cache status: last updated, total items, per-source breakdown

Example calls

# Top 10 curated items right now
curl -s -X POST "https://iiwkkrvyhktnwolsfndx.supabase.co/functions/v1/mcp" \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_top_picks","arguments":{"n":10}}}'

# Search for agent-related news
curl -s -X POST "https://iiwkkrvyhktnwolsfndx.supabase.co/functions/v1/mcp" \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"search_today","arguments":{"query":"agent"}}}'

# r/vibecoding only
curl -s -X POST "https://iiwkkrvyhktnwolsfndx.supabase.co/functions/v1/mcp" \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":3,"method":"tools/call","params":{"name":"get_trending_news","arguments":{"source":"reddit_vibecoding"}}}'

Data Sources & Transparency

We only collect publicly available content — no auth, no private data, no personal information.

Source

URL

Method

Data collected

HackerNews

https://hacker-news.firebaseio.com/v0/topstories.json

Public JSON API

Title, URL, score

r/ClaudeAI

https://www.reddit.com/r/ClaudeAI/hot.json

Public Reddit API

Title, URL, score, selftext summary

r/vibecoding

https://www.reddit.com/r/vibecoding/hot.json

Public Reddit API

Title, URL, score, selftext summary

r/codex

https://www.reddit.com/r/codex/hot.json

Public Reddit API

Title, URL, score, selftext summary

r/claudecode

https://www.reddit.com/r/claudecode/hot.json

Public Reddit API

Title, URL, score, selftext summary

r/openclaw

https://www.reddit.com/r/openclaw/hot.json

Public Reddit API

Title, URL, score, selftext summary

r/artificial

https://www.reddit.com/r/artificial/hot.json

Public Reddit API

Title, URL, score, selftext summary

r/ArtificialInteligence

https://www.reddit.com/r/ArtificialInteligence/hot.json

Public Reddit API

Title, URL, score, selftext summary

GitHub Trending

https://github.com/trending

HTML scrape

Repo name, description, stars

HuggingFace Spaces Trending

https://huggingface.co/api/spaces?sort=trendingScore

Public JSON API

Space ID, trending score

Lobsters

https://lobste.rs/hottest.json

Public JSON API

Title, URL, score

GeekNews

https://news.hada.io

HTML scrape

Title, URL, score

What we store

  • Cached snapshots of the above public data, refreshed every 6 hours

  • Opus-curated top 30 items with content summaries in news_curated table

  • Stored in Supabase, auto-deleted after 48 hours

  • No user data, no personal information, no private content

What we don't do

  • No paywalled or login-required content

  • No full article bodies — title, URL, score, and summary only

  • No selling or sharing of data


Self-hosting

git clone https://github.com/treesoop/ai-news-mcp
cd ai-news-mcp

Deploy the Edge Function in supabase/functions/mcp/ to your own Supabase project. Use news_fetcher_prompt.md + news_curate_prompt.md as Claude Code cron jobs to populate the cache.

Available Tools

8 tools
check_cacheA

Check the current state of the news cache — Supabase connection status, whether local/Supabase cache exists, how old it is, and how many items per source.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It mentions checking Supabase connection status and local cache existence, which implies a non-destructive diagnostic operation, but it does not explicitly state whether it has side effects (though 'check' implies read-only). It also doesn't describe potential latency or failure modes, which would be useful.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, well-structured sentence. It front-loads the primary action and resource ('check the current state of the news cache') and efficiently lists additional details (e.g., connection status, age, per-source counts) without any redundant words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the simple nature of the tool (zero parameters, no output schema), the description provides a good overview of what the tool examines and what information it reports. It does not specify the return format or error behavior, but for a cache check tool this level of detail is sufficient for an agent to understand its purpose and likely output.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has zero parameters, so the description trivially covers all schema requirements. Per the rubric, a baseline of 4 applies when there are no parameters, and the description adds useful contextual information about what is being checked without needing to explain any parameter semantics.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool checks the current state of the news cache and enumerates the exact aspects it reports (connection status, existence, age, per-source item counts). This differentiates it from sibling tools that fetch news content or perform searches.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies its use for diagnosing cache state, but it does not explicitly state when to use it versus alternatives or provide exclusion criteria. The verb 'check' and the subject make the context clear, but no guidance is given about scenarios where one might prefer another tool or prerequisite conditions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_new_sinceA

Queries Supabase for all cache rows created after a given ISO timestamp. Returns deduplicated news items sorted newest first. Requires Supabase connection.

ParametersJSON Schema
NameRequiredDescriptionDefault
sinceYesISO 8601 timestamp, e.g. 2026-04-01T00:00:00Z

TDQS

A4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Without annotations, the description provides important behavioral details: it queries (read operation), returns deduplicated and sorted output, and requires a Supabase connection. This covers the main behavioral traits, though it doesn't disclose error handling or empty-result behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two concise sentences, front-loaded with the primary action, followed by key output details and a prerequisite. Every sentence adds value.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple 1-parameter tool with no output schema, the description is fairly complete: it covers what the query does, what it returns, and a requirement. Minor absences like pagination or empty results don't undermine adequacy.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema covers the sole parameter 'since' with 100% description coverage, so the baseline is 3. The description only restates that rows are created after the timestamp, adding no new meaning beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description uses a specific verb 'Queries' targeting Supabase cache rows with a temporal filter, and specifies the return behavior (deduplicated news items sorted newest first). This clearly distinguishes it from sibling tools like search_today or get_trending_news.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The context for using this tool (fetching cache rows after a timestamp) is implied, but there is no explicit comparison to alternatives or exclusions. It doesn't reference sibling tools or state when not to use it.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_paper_briefA

Fetches an ArXiv paper's title, authors, abstract, and submission date. Searches Papers With Code and GitHub for associated code repositories.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesArXiv paper URL, e.g. https://arxiv.org/abs/2401.12345

TDQS

A4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It clearly states the tool fetches data from ArXiv and searches external sources, implying read-only behavior and network dependency. However, it does not mention potential errors, response format, or rate limits, so it falls short of a perfect score.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two concise sentences, front-loaded with the primary action and followed by the secondary search behavior. Every word adds value, with no filler or redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the low complexity (single parameter, no output schema), the description adequately covers the tool's purpose and behavior. It specifies the fields returned and the external sources searched. It could mention the response format or error handling, but for a simple fetch tool, this is sufficient.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema already provides 100% coverage for the single 'url' parameter, including a descriptive example. The description adds no extra semantic detail about the parameter beyond what the schema gives, so the baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Fetches') and clearly names the resource ('ArXiv paper') along with the exact data fields (title, authors, abstract, submission date). It also adds the secondary behavior of searching Papers With Code and GitHub, which distinguishes it from sibling tools like get_repo_quickstart.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies the tool is for retrieving a paper brief, but it does not explicitly state when to use this tool versus alternatives, nor does it provide any exclusion criteria. Usage context is implied by the tool name and description but not explicitly guided.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_repo_quickstartA

Fetches a GitHub repo's metadata (stars, description, language, topics) and extracts install commands and a quickstart code block from its README.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesGitHub repository URL, e.g. https://github.com/owner/repo

TDQS

A3.8/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It clearly indicates a read-only operation ('fetches', 'extracts') with no side effects mentioned. However, it does not disclose potential pitfalls such as invalid URLs, missing README sections, or response format details. This is acceptable for a simple tool but lacks depth.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded sentence with no redundant words. It efficiently conveys both the metadata retrieval and README extraction aspects without unnecessary detail.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With only one parameter, no output schema, and no annotations, the description provides a good overview of the tool's behavior and explicitly lists the key output elements (stars, description, language, topics, install commands, quickstart block). It does not cover edge cases or fallback behavior, but for a simple tool it is reasonably complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema description covers the singular 'url' parameter with a clear format and example, achieving 100% coverage. The tool description adds no extra parameter meaning beyond this, so the baseline score of 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose with a specific verb ('fetches') and resource ('GitHub repo's metadata') and adds detail about extracting README content. It distinguishes itself from sibling tools (news, papers, topics) by explicitly focusing on GitHub repos.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No explicit when-to-use or alternative guidance is provided. However, the description's specificity makes it clear the tool is for getting repo metadata and quickstart info, which indirectly guides usage. It does not mention any exclusions or alternatives, so it's adequate but not thorough.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_topic_suggestionsA

Suggests blog topic ideas based on trending news, tailored per project (potenlab, treesoop, hanguljobs) and filtered against already-used topics.

ParametersJSON Schema
NameRequiredDescriptionDefault
slotsNoNumber of topic suggestions to return. Default: 3
projectYesThe project requesting topic suggestions
used_topicsNoList of already-used topics to avoid duplicates

TDQS

A4.2/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the burden. It discloses that the tool relies on trending news, tailors ideas per project, and filters against used topics, which is meaningful. However, it does not mention whether it performs external network calls, any rate limits, or caching behavior, leaving some behavioral aspects unspecified.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single 23-word sentence that is front-loaded with the main action and includes all essential context. No filler words or redundant phrases.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple suggestion tool with strong schema coverage, the description is complete: it explains the source, tailoring, and filtering. It does not describe return format, but no output schema exists and the tool's output is straightforward. Sibling tool names also provide useful context.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so baseline is 3. The description adds value by explaining the purpose of project (tailoring) and used_topics (filtering), but does not mention slots. This extra meaning justifies a 4.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'suggests' and the resource 'blog topic ideas', and specifies the scope: based on trending news, tailored per project, and filtered against used topics. This distinguishes it from sibling tools like get_trending_news (raw news) and get_top_picks (general top picks).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context: use it when you need blog topic ideas grounded in trending news for a specific project, with duplicate filtering. It does not explicitly say when not to use it or name alternatives, but the context alone is enough to guide selection.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_top_picksB

Returns top N most relevant items for AI engineers, scored by source reputation (HN/Reddit > ArXiv > others) plus item score. Each item includes a one-liner 'why it matters' and optional try_url.

ParametersJSON Schema
NameRequiredDescriptionDefault
nNoNumber of top picks to return. Default: 10
categoryNoFilter by category before picking. Default: allall

TDQS

B3.4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the transparency burden. It discloses the scoring behavior and the return item format (one-liner 'why it matters' and optional try_url), which adds useful context. However, it does not mention potential side effects, rate limits, or constraints like maximum N, leaving some behavioral traits undisclosed.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences, front-loaded with the primary action ('Returns'), and provides key details (scoring, item format) without waste. Every clause earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity and complete schema, the description covers purpose, scoring, and return format sufficiently. The absence of usage guidelines and output schema is a minor gap, but the description gives enough for an agent to invoke it correctly. Slightly less complete than a tool with explicit alternatives or richer behavioral notes.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, and the schema already explains both 'n' and 'category' clearly. The description echoes 'top N' but adds no extra meaning beyond the schema, so the baseline of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool returns top N relevant items for AI engineers, with a specific scoring methodology (source reputation plus item score). It distinguishes itself by audience and ranking mechanism, though it does not explicitly contrast with sibling tools like get_trending_news or search_today.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no guidance on when to use this tool versus alternatives. It does not mention that this is preferable for a curated, reputation-weighted list or that other tools might be better for specific filtering needs. The 'for AI engineers' audience hint is the only contextual clue.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_todayA

Search today's cached news by keyword query. Matches against title and summary, scores by word match count × item score. Returns top results.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of results to return. Default: 20
queryYesSearch query string (space-separated keywords)

TDQS

A4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full responsibility and does well by disclosing matching against title/summary, the scoring formula (word match count × item score), and that it returns top results. This goes beyond a simple statement and gives useful insight into how results are ranked.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences, front-loaded with the primary action, and contains no redundant or filler content. Every word adds value, making it highly efficient and easy to parse.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given only 2 parameters, no annotations, and no output schema, the description adequately explains the tool's behavior and intent. It notes the matching scope and scoring, which is enough for an agent to select and call it, though it does not describe the exact return structure.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, with both parameters (query and limit) already described. The description adds the meaning of query as keyword query and the concept of 'top results' but does not significantly expand on the schema's parameter descriptions, so baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description specifies a clear action ('Search') on a specific resource ('today's cached news') with a scoping method ('by keyword query'). It also details matching and scoring behavior, distinguishing it from sibling tools like get_trending_news or check_cache.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for keyword-based searches on cached news, but does not explicitly state when to use this tool over alternatives like get_trending_news or get_top_picks. The presence of search semantics provides context, but no direct alternative differentiation or exclusion criteria are given.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 8 tool updatesv1.0.0
    • First observedcheck_cache
    • First observedget_new_since
    • First observedget_paper_brief
    • First observedget_repo_quickstart
    • First observedget_top_picks
    • First observedget_topic_suggestions
    • First observedget_trending_news
    • First observedsearch_today

TDQS

A3.9/5.0
Disambiguation4/5

Tools like get_trending_news, get_top_picks, search_today, and get_new_since all return news items but with distinct mechanisms—aggregation, ranking, keyword search, and time-based filtering. Some initial confusion possible between get_trending_news and get_top_picks, but descriptions clarify their unique purposes.

Naming Consistency4/5

Most tools follow a get_ prefix with descriptive nouns (get_repo_quickstart, get_trending_news, get_top_picks, get_paper_brief, get_new_since, get_topic_suggestions), but search_today and check_cache deviate from this pattern. Still, the naming is largely predictable and readable.

Tool Count5/5

With 8 tools covering news aggregation, search, ranking, paper/research lookups, repository quickstarts, topic suggestions, and cache status, the tool count is well-suited to the server's purpose. No tool feels redundant or unnecessary.

Completeness4/5

The tool surface covers the main workflows: retrieving trending news, searching it, getting top picks, fetching paper briefs and repo quickstarts, suggesting blog topics, and checking cache health. Minor omissions like fetching a specific news item by ID or source-specific filtering are workaround-able through search and time-based retrieval.

Maintenance

ActivityInactive
ResponsivenessUnresponsive

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    C
    maintenance
    Local MCP server that ingests and normalizes recent AI, tech, and research news from multiple sources, exposing tools for media agents to query and retrieve article content on demand.
    -
  • A
    license
    Not graded
    quality
    B
    maintenance
    MCP server that aggregates AI news, academic papers from ArXiv, and trending GitHub repositories from multiple sources, enabling users to fetch, search, and filter recent AI content via natural language.
    1
    MIT
  • A
    license
    A
    quality
    D
    maintenance
    Provides AI agents with global tech news from 500+ sources across regions, with translated titles, scoring, and clustering tools for real-time intelligence.
    8
    52
    MIT
  • A
    license
    Not graded
    quality
    A
    maintenance
    MCP server that gives AI agents a ranked, evidence-backed board of what's trending in AI — repos, models, papers, news — and a daily brief, using fused signals from GitHub, Hacker News, npm, and more.
    3
    Apache 2.0

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/treesoop/ai-news-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server