Newsdata MCP Server

MCP server for the NewsData.io REST API (latest/archive/crypto/market news, source discovery, aggregate counts).

Local serverstdioPython

What is the Newsdata MCP server?

MCP server for the NewsData.io REST API (latest/archive/crypto/market news, source discovery, aggregate counts). Exposed over MCP by the newsdata mcp server, that capability becomes something an assistant can invoke while it works, not something you go and do afterwards.

What it actually does

The official MCP server for the Newsdata.io News API. It exposes real-time, historical, crypto, and market news — plus source discovery and aggregate counts — as tools for Claude Desktop, Claude Code, Cursor, Zed, Cline, VS Code Copilot, Windsurf, ChatGPT Desktop, and any other MCP-compatible AI assistant. Ask questions in natural language; the assistant calls the right tool and returns formatted news.

Its toolset

Everything the assistant can do here goes through one of these:

  • get_latest_news — /api/1/latest
  • get_archive_news — /api/1/archive
  • get_crypto_news — /api/1/crypto
  • get_market_news — /api/1/market
  • get_news_sources — /api/1/sources
  • get_news_counts — /api/1/count
  • get_crypto_counts — /api/1/crypto/count
  • get_market_counts — /api/1/market/count
  • Cursor — Create or edit .cursor/mcp.json in your project root (or ~/.cursor/mcp.json globally) — same JSON block. Restart Cursor; the server appears under
  • Windsurf — Edit ~/.codeium/windsurf/mcp_config.json — same JSON block as the Claude Code example. Restart Windsurf
  • Releasing — 1. Bump version in src/newsdata_mcp/init.py. 2. Commit and tag: git tag vX.Y.Z && git push --tags. 3. .github/workflows/release.yml builds

Configuration

You will need 3 environment variables: NEWSDATA_API_KEY, NEWSDATA_BASE_URL, NEWSDATA_INTEGRATION_KEY. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Adding it to your client

Installation goes through your MCP client rather than a global install: point it at newsdata-mcp on PyPI and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

When to reach for it

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Newsdata's toolset — get_latest_news, get_archive_news, get_crypto_news and 8 more — is a fair guide to whether it matches your workflow.

This entry was verified against Newsdata's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 11 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Newsdata.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the newsdata mcp server does with a few real requests.

Available tools

ToolWhat it does
get_latest_news/api/1/latest
get_archive_news/api/1/archive
get_crypto_news/api/1/crypto
get_market_news/api/1/market
get_news_sources/api/1/sources
get_news_counts/api/1/count
get_crypto_counts/api/1/crypto/count
get_market_counts/api/1/market/count
CursorCreate or edit .cursor/mcp.json in your project root (or ~/.cursor/mcp.json globally) — same JSON block. Restart Cursor; the server appears under **Cursor Settings → MCP**.
WindsurfEdit ~/.codeium/windsurf/mcp_config.json — same JSON block as the Claude Code example. Restart Windsurf.
Releasing1. Bump __version__ in src/newsdata_mcp/__init__.py. 2. Commit and tag: git tag vX.Y.Z && git push --tags. 3. .github/workflows/release.yml builds the sdist + wheel, publishes to PyPI via Trusted Publishing (no token), a

How to install the Newsdata MCP server

{
  "mcpServers": {
    "newsdata": {
      "command": "uvx",
      "args": ["newsdata-mcp"],
      "env": {
        "NEWSDATA_API_KEY": "your-value",
        "NEWSDATA_BASE_URL": "your-value",
        "NEWSDATA_INTEGRATION_KEY": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
NEWSDATA_API_KEYCredential the server authenticates with.Yes
NEWSDATA_BASE_URLEndpoint or connection string the server talks to.Yes
NEWSDATA_INTEGRATION_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Newsdata to get latest news.
  • Use Newsdata to get archive news.
  • Use Newsdata to get crypto news.

Frequently asked questions

It connects Newsdata to MCP-compatible AI assistants such as Claude and Cursor, exposing 11 tools (get_latest_news, get_archive_news, get_crypto_news, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Newsdata directly.