ai-news-mcp
Aggregates and curates AI/tech news from 12 sources every 6 hours, providing pre-summarized and Opus-curated top picks for vibe coders and AI builders via MCP tools.
README
ai-news-mcp
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
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_curatedtable - 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.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。