Add Real-Time AI News to Claude Desktop in 30 Seconds (MCP)
The Model Context Protocol (MCP) lets Claude Desktop connect to external tools and data sources without writing any code. wpnews ships a ready-to-use MCP server with 61 news tools — install it in under a minute.
Prerequisites
- Claude Desktop (macOS or Windows) — download here
- Node.js 18+ (for npx) — nodejs.org
- A free wpnews API key — get one here (instant, no card)
Installation
1 Install the MCP server package
Run this in your terminal to install globally:
npx -y wpnews-mcp
This downloads and runs the server once to verify it works. You should see a confirmation message.
2 Configure Claude Desktop
Open (or create) ~/.claude/claude_desktop_config.json and add the wpnews server:
{
"mcpServers": {
"wpnews": {
"command": "npx",
"args": ["-y", "wpnews-mcp"],
"env": {
"WPNEWS_API_KEY": "YOUR_KEY_HERE"
}
}
}
}
Replace YOUR_KEY_HERE with your wpnews API key. On Windows, the config file is at %APPDATA%\Claude\claude_desktop_config.json.
3 Restart Claude Desktop
Quit and reopen Claude Desktop. You should see a hammer icon (🔨) in the bottom-left corner of the chat window, indicating MCP tools are loaded.
4 Try it
Type any of these into Claude Desktop:
- "What's the latest AI news today?"
- "Give me a briefing on OpenAI news from the last 48 hours."
- "What topics are trending in AI right now?"
- "Is there a news burst happening right now?" (uses
get_news_velocity) - "Track Anthropic and show me their last 10 news mentions."
All 65 MCP tools
The wpnews MCP server provides tools organized by category:
- News retrieval —
get_news,search_news,get_trending_news,get_recent_articles,get_article - Entity tracking —
get_entity_news,get_entity_brief,get_entity_pulse,get_trending_entities,compare_entities - Topic analytics —
get_radar,get_topic_digest,get_topics_heatmap,get_topic_narrative - Smart context —
get_adaptive_context(auto-budget),get_news_velocity(burst detection),get_pulse - Digests —
get_daily_brief,get_slack_digest,get_email_digest,get_voice_digest - Watchlist —
get_watchlist_digest,watchlist_add,watchlist_list,watchlist_delete
Browse all tools at wpnews.pro/tools.
Using Cursor instead of Claude Desktop
The same config works in Cursor. Add to your Cursor MCP settings (Settings → Features → MCP Servers):
{
"wpnews": {
"command": "npx",
"args": ["-y", "wpnews-mcp"],
"env": { "WPNEWS_API_KEY": "YOUR_KEY_HERE" }
}
}
Get your free API key
1,000 req/day, all 65 MCP tools, no credit card, instant delivery.
Get free API key →More from the blog
How to Add Real-Time News to GPT-4 Agents (2025 Guide)
Step-by-step guide to giving GPT-4, Claude, or any LLM live access to AI news using wpnews function calling tools. 2-lin…
Build an AI News Monitoring Agent with LangChain + wpnews (Python)
Tutorial: build a LangChain agent that tracks named entities, detects news bursts, and sends Slack alerts — using wpnews…
Build a Breaking News Detector with LangGraph + wpnews (2025)
Step-by-step guide to building a LangGraph agent that polls /articles/hot every 30 minutes, detects breaking stories, an…
Give AutoGen Agents Real-Time News Intelligence (Python, 2025)
Tutorial: wire wpnews into a Microsoft AutoGen multi-agent system. One tool registration gives every agent in your group…
Build a CrewAI News Research Crew with Real-Time Data (Python, 2025)
Tutorial: build a CrewAI crew of specialized agents — NewsResearcher, Analyst, and Writer — that collaborate to produce …
Build a News Agent with Pydantic AI + wpnews (Python, 2025)
Tutorial: use Pydantic AI's type-safe tool system to build a structured news analyst agent. Returns typed Pydantic model…
Automate AI News Digests with n8n + wpnews (No-Code, 2025)
Build a no-code n8n workflow that fetches AI news every morning, filters by breaking stories, and posts a digest to Slac…
Build a Real-Time News Retriever with Haystack + wpnews (Python, 2025)
Tutorial: implement a custom Haystack component that fetches live AI news from wpnews and plugs it into any RAG pipeline…
Build a News Agent with Google ADK + wpnews (Python, 2025)
Tutorial: wire wpnews into Google Agent Development Kit (ADK) — Google's official multi-agent framework. Register 71 new…
Real-Time News Tools for smolagents (HuggingFace, Python, 2025)
Tutorial: add live AI news to HuggingFace smolagents with the @tool decorator. Use wpnews as a CodeAgent or ToolCallingA…