loading…
Search for a command to run...
loading…
Connects LLMs to NewsData.io to search for latest news, cryptocurrency trends, and financial market data with advanced filtering options. It enables users to ac
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.
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.
| Tool | Description |
|---|---|
newsdata_latest |
Latest news from the past 48 hours with full filtering |
newsdata_crypto |
Cryptocurrency-specific news with coin filtering |
newsdata_market |
Financial/stock market news (beta) with ticker symbols |
newsdata_archive |
Historical news search with date ranges (paid plans) |
newsdata_sources |
Browse available news sources by country/language/category |
All tools support: keyword search (AND/OR/NOT), country, language, category, domain, sentiment, pagination, and deduplication filters.
cd newsdata-mcp-server
npm install
npm run build
export NEWSDATA_API_KEY="your_api_key_here"
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"
}
}
}
}
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 mcp add newsdata -- node /path/to/newsdata-mcp-server/dist/index.js
Set the env variable NEWSDATA_API_KEY in your shell before running.
Once connected, just ask Claude naturally:
| Endpoint | Tool | Plan Required |
|---|---|---|
/api/1/latest |
newsdata_latest |
Free+ |
/api/1/crypto |
newsdata_crypto |
Basic+ |
/api/1/market |
newsdata_market |
Basic+ |
/api/1/archive |
newsdata_archive |
Professional+ |
/api/1/sources |
newsdata_sources |
Free+ |
| Variable | Required | Description |
|---|---|---|
NEWSDATA_API_KEY |
Yes | Your NewsData.io API key |
TRANSPORT |
No | stdio (default) or http |
PORT |
No | HTTP port (default: 3000) |
MIT
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"newsdata-io-mcp-server": {
"command": "npx",
"args": []
}
}
}