MCP Hub
Back to servers

NewsData.io MCP Server

Connects LLMs to NewsData.io to search for latest news, cryptocurrency trends, and financial market data with advanced filtering options. It enables users to access real-time headlines, historical archives, and news sources directly through natural language.

Updated
Feb 11, 2026

NewsData.io MCP Server

An MCP (Model Context Protocol) server that connects NewsData.io to Claude and other LLM clients. Search latest news, crypto news, market news, historical archives, and browse news sources — all from within your AI assistant.

Features

ToolDescription
newsdata_latestLatest news from the past 48 hours with full filtering
newsdata_cryptoCryptocurrency-specific news with coin filtering
newsdata_marketFinancial/stock market news (beta) with ticker symbols
newsdata_archiveHistorical news search with date ranges (paid plans)
newsdata_sourcesBrowse available news sources by country/language/category

All tools support: keyword search (AND/OR/NOT), country, language, category, domain, sentiment, pagination, and deduplication filters.

Prerequisites

  1. Node.js 18+ installed
  2. NewsData.io API key — get one free at newsdata.io

Setup

1. Install dependencies

cd newsdata-mcp-server
npm install
npm run build

2. Set your API key

export NEWSDATA_API_KEY="your_api_key_here"

3. Connect to Claude

Claude Desktop App (stdio mode — recommended for desktop)

Add to your Claude Desktop config file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "newsdata": {
      "command": "node",
      "args": ["/path/to/newsdata-mcp-server/dist/index.js"],
      "env": {
        "NEWSDATA_API_KEY": "your_api_key_here"
      }
    }
  }
}

Claude.ai Web (HTTP mode)

Run as an HTTP server:

TRANSPORT=http PORT=3000 NEWSDATA_API_KEY="your_key" node dist/index.js

The MCP endpoint will be available at http://localhost:3000/mcp

Claude Code (stdio mode)

claude mcp add newsdata -- node /path/to/newsdata-mcp-server/dist/index.js

Set the env variable NEWSDATA_API_KEY in your shell before running.

Usage Examples

Once connected, just ask Claude naturally:

  • "What's the latest news about AI?"
  • "Show me crypto news for Bitcoin and Ethereum"
  • "Find market news about AAPL and MSFT"
  • "Search for climate change news from US sources in the last 6 hours"
  • "List top English technology news sources"
  • "Find positive sentiment news about renewable energy"

API Endpoints Covered

EndpointToolPlan Required
/api/1/latestnewsdata_latestFree+
/api/1/cryptonewsdata_cryptoBasic+
/api/1/marketnewsdata_marketBasic+
/api/1/archivenewsdata_archiveProfessional+
/api/1/sourcesnewsdata_sourcesFree+

Environment Variables

VariableRequiredDescription
NEWSDATA_API_KEYYesYour NewsData.io API key
TRANSPORTNostdio (default) or http
PORTNoHTTP port (default: 3000)

License

MIT

Reviews

No reviews yet

Sign in to write a review