Add Real-Time AI News to Claude Desktop in 30 Seconds (MCP)

2025-05-10 4 min read wpnews team

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.

What you get: Claude will be able to search news, track companies, get daily briefings, monitor topics, detect news bursts, and more — all by typing natural language questions.

Prerequisites

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:

All 65 MCP tools

The wpnews MCP server provides tools organized by category:

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 →
mcp claude claude-desktop news-api model-context-protocol

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…