NewsData.io MCP Server
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@NewsData.io MCP ServerWhat's the latest news about artificial intelligence?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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
Tool | Description |
| Latest news from the past 48 hours with full filtering |
| Cryptocurrency-specific news with coin filtering |
| Financial/stock market news (beta) with ticker symbols |
| Historical news search with date ranges (paid plans) |
| 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.
Related MCP server: News API MCP Server
Prerequisites
Node.js 18+ installed
NewsData.io API key — get one free at newsdata.io
Setup
1. Install dependencies
cd newsdata-mcp-server
npm install
npm run build2. 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.jsThe 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.jsSet 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
Endpoint | Tool | Plan Required |
|
| Free+ |
|
| Basic+ |
|
| Basic+ |
|
| Professional+ |
|
| Free+ |
Environment Variables
Variable | Required | Description |
| Yes | Your NewsData.io API key |
| No |
|
| No | HTTP port (default: 3000) |
License
MIT
Available Tools
5 toolsnewsdata_archiveNews ArchiveARead-onlyIdempotent
Search historical news articles (paid plans only).
Access archived news with date range filtering. Useful for research and historical analysis.
Args:
q: Search keywords
from_date: Start date (YYYY-MM-DD or YYYY-MM-DD HH:MM:SS)
to_date: End date (YYYY-MM-DD or YYYY-MM-DD HH:MM:SS)
country, language, category: Standard filters
size: Results per page
page: Pagination token
Examples:
News about Tesla in January 2025: q="tesla", from_date="2025-01-01", to_date="2025-01-31"
Historical crypto coverage: q="bitcoin", from_date="2024-01-01", to_date="2024-12-31"
| Name | Required | Description | Default |
|---|---|---|---|
| q | No | Search keywords. Use AND/OR/NOT operators. Example: 'bitcoin AND ethereum' | |
| tag | No | Filter by AI-detected tags | |
| page | No | Pagination token from previous response's nextPage value | |
| size | No | Number of articles per request (free: max 10, paid: max 50) | |
| image | No | Filter articles with (1) or without (0) images | |
| video | No | Filter articles with (1) or without (0) videos | |
| domain | No | Comma-separated source domains. Example: 'bbc.co.uk,cnn.com' | |
| country | No | Comma-separated country codes. Example: 'us,gb,ca' | |
| qInMeta | No | Search keywords in title, URL, and meta description | |
| to_date | No | End date: YYYY-MM-DD or YYYY-MM-DD HH:MM:SS | |
| category | No | Comma-separated categories: business, crime, domestic, education, entertainment, environment, food, health, lifestyle, other, politics, science, sports, technology, top, tourism, world | |
| language | No | Comma-separated language codes. Example: 'en,es,fr' | |
| qInTitle | No | Search keywords in article titles only | |
| timezone | No | Timezone for results. Example: 'America/New_York' | |
| domainurl | No | Comma-separated full domain URLs | |
| from_date | No | Start date: YYYY-MM-DD or YYYY-MM-DD HH:MM:SS | |
| sentiment | No | Filter by article sentiment | |
| excludedomain | No | Comma-separated domains to exclude | |
| prioritydomain | No | Filter by domain priority: top (top 10%), medium (top 30%), low (top 50%) | |
| removeduplicate | No | Set to '1' to remove duplicate articles |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare read-only, idempotent, and non-destructive behavior. The description adds the access restriction ('paid plans only') and hints at pagination via the 'page' arg, but it does not disclose return format, rate limits, or sorting behavior. It provides some value beyond annotations but with clear gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with a clear summary, followed by a compact args list and two illustrative examples. It is efficient, though the args list partly duplicates schema information, preventing a perfect score.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
This is a complex 20-parameter tool with no output schema. The description provides examples and key parameters but does not describe the response structure, pagination navigation details, or error behavior. The rich schema and annotations help, but the description alone leaves some gaps for a complete understanding.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the baseline is 3. The description adds practical examples (e.g., q='tesla', from_date='2025-01-01', to_date='2025-01-31') and highlights key parameters like q, from_date, to_date, size, and page, making parameter usage more concrete.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description explicitly states 'Search historical news articles (paid plans only)' with a specific verb and resource. It clearly distinguishes from sibling tools like 'latest', 'crypto', 'market', and 'sources' by focusing on the 'archive' and 'historical' aspect.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context: it is 'useful for research and historical analysis' and notes 'paid plans only'. However, it does not explicitly name alternatives or state when not to use this tool, so it stops short of full usage-guideline clarity.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
newsdata_cryptoCrypto NewsARead-onlyIdempotent
Fetch cryptocurrency-specific news articles.
Dedicated endpoint for crypto/blockchain news with coin-specific filtering. Returns articles tagged with cryptocurrency topics from the past 48 hours.
Args:
q: Search keywords (e.g., 'bitcoin', 'ethereum defi')
coin: Filter by specific coin (e.g., 'BTC,ETH,SOL')
country, language, category: Standard filters
sentiment: Filter by sentiment
timeframe: Lookback in hours (1-48) or minutes
size: Results per page
page: Pagination token
Examples:
Bitcoin news: q="bitcoin" or coin="BTC"
DeFi news in English: q="defi", language="en"
Negative crypto sentiment: sentiment="negative"
| Name | Required | Description | Default |
|---|---|---|---|
| q | No | Search keywords. Use AND/OR/NOT operators. Example: 'bitcoin AND ethereum' | |
| tag | No | Filter by AI-detected tags | |
| coin | No | Comma-separated coin symbols. Example: 'BTC,ETH,SOL,DOGE' | |
| page | No | Pagination token from previous response's nextPage value | |
| size | No | Number of articles per request (free: max 10, paid: max 50) | |
| image | No | Filter articles with (1) or without (0) images | |
| video | No | Filter articles with (1) or without (0) videos | |
| domain | No | Comma-separated source domains. Example: 'bbc.co.uk,cnn.com' | |
| country | No | Comma-separated country codes. Example: 'us,gb,ca' | |
| qInMeta | No | Search keywords in title, URL, and meta description | |
| category | No | Comma-separated categories: business, crime, domestic, education, entertainment, environment, food, health, lifestyle, other, politics, science, sports, technology, top, tourism, world | |
| language | No | Comma-separated language codes. Example: 'en,es,fr' | |
| qInTitle | No | Search keywords in article titles only | |
| timezone | No | Timezone for results. Example: 'America/New_York' | |
| domainurl | No | Comma-separated full domain URLs | |
| sentiment | No | Filter by article sentiment | |
| timeframe | No | Lookback period: hours (1-48) or minutes (e.g., '120m') | |
| excludedomain | No | Comma-separated domains to exclude | |
| prioritydomain | No | Filter by domain priority: top (top 10%), medium (top 30%), low (top 50%) | |
| removeduplicate | No | Set to '1' to remove duplicate articles |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate this is a read-only, idempotent, non-destructive operation. The description adds useful behavioral details: results are limited to the past 48 hours unless timeframe is set, supports pagination tokens, and provides concrete query examples. It does not disclose response structure or rate limits, but the annotation coverage lowers the burden.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-organized with a summary, argument list, and examples. It is slightly redundant between the first sentence and 'Dedicated endpoint...' but otherwise each section serves a clear purpose and the examples are compact.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no output schema, the description at least states the tool returns articles and constrains them to crypto topics and a 48-hour window. It covers the primary parameters and gives actionable examples. It could be more complete by describing the article fields or default paging behavior, but it provides enough to select and invoke the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already covers all 20 parameters with descriptions, giving a baseline of 3. The description adds value by highlighting the most relevant parameters (q, coin, sentiment, timeframe) and providing purpose-driven examples like 'Bitcoin news: q="bitcoin" or coin="BTC"' that clarify how to combine them.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with 'Fetch cryptocurrency-specific news articles,' naming a specific verb, resource, and domain. It further distinguishes itself from siblings by noting this is a 'dedicated endpoint for crypto/blockchain news with coin-specific filtering' and by limiting results to the past 48 hours.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description clearly conveys when to use the tool: for cryptocurrency/blockchain news, especially with coin-specific filtering or sentiment. It does not explicitly mention alternatives or when-not-to-use cases, but the 'dedicated endpoint' phrasing and 48-hour window give enough context to differentiate from the named siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
newsdata_latestLatest NewsARead-onlyIdempotent
Fetch the latest news articles from the past 48 hours worldwide.
Supports keyword search, country/language/category filtering, sentiment analysis, and pagination. Returns up to 50 articles per request (10 for free plans).
Args:
q: Search keywords (supports AND/OR/NOT operators)
qInTitle: Search in titles only
country: Filter by country codes (e.g., 'us,gb')
category: Filter by category (e.g., 'business,technology')
language: Filter by language (e.g., 'en')
sentiment: Filter by sentiment (positive/negative/neutral)
timeframe: Lookback in hours (1-48) or minutes (e.g., '120m')
size: Results per page (1-50)
page: Pagination token from previous response
Examples:
Latest US tech news: q="technology", country="us"
Breaking news last 2 hours: timeframe=2
Positive AI news: q="artificial intelligence", sentiment="positive"
| Name | Required | Description | Default |
|---|---|---|---|
| q | No | Search keywords. Use AND/OR/NOT operators. Example: 'bitcoin AND ethereum' | |
| tag | No | Filter by AI-detected tags | |
| page | No | Pagination token from previous response's nextPage value | |
| size | No | Number of articles per request (free: max 10, paid: max 50) | |
| image | No | Filter articles with (1) or without (0) images | |
| video | No | Filter articles with (1) or without (0) videos | |
| domain | No | Comma-separated source domains. Example: 'bbc.co.uk,cnn.com' | |
| country | No | Comma-separated country codes. Example: 'us,gb,ca' | |
| qInMeta | No | Search keywords in title, URL, and meta description | |
| category | No | Comma-separated categories: business, crime, domestic, education, entertainment, environment, food, health, lifestyle, other, politics, science, sports, technology, top, tourism, world | |
| language | No | Comma-separated language codes. Example: 'en,es,fr' | |
| qInTitle | No | Search keywords in article titles only | |
| timezone | No | Timezone for results. Example: 'America/New_York' | |
| domainurl | No | Comma-separated full domain URLs | |
| sentiment | No | Filter by article sentiment | |
| timeframe | No | Lookback period: hours (1-48) or minutes (e.g., '120m') | |
| excludedomain | No | Comma-separated domains to exclude | |
| prioritydomain | No | Filter by domain priority: top (top 10%), medium (top 30%), low (top 50%) | |
| removeduplicate | No | Set to '1' to remove duplicate articles |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already mark the tool as read-only and non-destructive. The description adds valuable behavioral details: rate limits (10 free vs 50 paid), pagination via token, and lookback timeframe constraints. These go beyond the structured annotations and help set correct expectations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured with a concise summary, a bulleted parameter list, and concrete examples. Every sentence serves a purpose, and the format is easy to scan. The length is appropriate for a feature-rich news API.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (19 parameters, no output schema) and the rich sibling toolset, the description covers purpose, key parameters, rate limits, and usage examples. It doesn't fully describe the response structure, but this is partially mitigated by the clear scope and familiar news-article concept. The description is complete enough for an agent to select and invoke the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema covers all 19 parameters at 100% coverage, giving the baseline of 3. The description adds value by providing usage examples and clarifying semantic relationships (e.g., timeframe hours/minutes, sentiment values, country codes). This pushes it above the baseline but not to 5 since the schema already documents each parameter thoroughly.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with 'Fetch the latest news articles from the past 48 hours worldwide,' which combines a specific verb, resource, and temporal scope. The scope distinguishes it from siblings like newsdata_archive and newsdata_crypto, making the tool's role clear.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides a clear context of use: fetching recent, worldwide news with various filters. It includes examples of valid queries and parameter combinations. However, it does not explicitly name sibling tools or state when to prefer this over alternatives, so it falls short of a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
newsdata_marketMarket NewsBRead-onlyIdempotent
Fetch financial and stock market news (beta endpoint).
Get real-time market news including stock analysis, financial sentiment, and business mergers. Returns articles from the past 48 hours.
Args:
q: Search keywords (e.g., 'AAPL', 'stock market')
symbol: Stock ticker symbols (e.g., 'AAPL,MSFT,GOOGL')
country, language: Standard filters
sentiment: Filter by financial sentiment
timeframe: Lookback in hours (1-48) or minutes
size: Results per page
page: Pagination token
Examples:
Apple stock news: symbol="AAPL"
Market crash coverage: q="market crash", sentiment="negative"
Tech earnings: q="earnings report", category="business"
| Name | Required | Description | Default |
|---|---|---|---|
| q | No | Search keywords. Use AND/OR/NOT operators. Example: 'bitcoin AND ethereum' | |
| page | No | Pagination token from previous response's nextPage value | |
| size | No | Number of articles per request (free: max 10, paid: max 50) | |
| image | No | Filter articles with (1) or without (0) images | |
| video | No | Filter articles with (1) or without (0) videos | |
| domain | No | Comma-separated source domains. Example: 'bbc.co.uk,cnn.com' | |
| symbol | No | Comma-separated stock ticker symbols. Example: 'AAPL,MSFT,GOOGL' | |
| country | No | Comma-separated country codes. Example: 'us,gb,ca' | |
| qInMeta | No | Search keywords in title, URL, and meta description | |
| category | No | Comma-separated categories: business, crime, domestic, education, entertainment, environment, food, health, lifestyle, other, politics, science, sports, technology, top, tourism, world | |
| language | No | Comma-separated language codes. Example: 'en,es,fr' | |
| qInTitle | No | Search keywords in article titles only | |
| timezone | No | Timezone for results. Example: 'America/New_York' | |
| domainurl | No | Comma-separated full domain URLs | |
| sentiment | No | Filter by article sentiment | |
| timeframe | No | Lookback period: hours (1-48) or minutes (e.g., '120m') | |
| excludedomain | No | Comma-separated domains to exclude | |
| prioritydomain | No | Filter by domain priority: top (top 10%), medium (top 30%), low (top 50%) | |
| removeduplicate | No | Set to '1' to remove duplicate articles |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, which cover the safety profile. The description adds the 'beta endpoint' status and the 48-hour lookback limit, which are useful behavioral constraints, but it does not disclose rate limits, pagination behavior beyond the schema, or any other operational details. There is no contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured with a summary line, an args list, and examples. It is front-loaded with the key purpose and does not ramble. The second sentence ('Get real-time market news...') adds some redundancy but also context, making it acceptable. Overall, it is appropriately concise for a tool of this complexity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has 19 parameters and no output schema, the description provides only a partial parameter overview and omits many schema params from its Args list. However, the schema fills that gap. The description adds key constraints (past 48 hours, beta status) but lacks explicit sibling differentiation and does not explain the return format or pagination flow beyond the schema. It is adequate but not comprehensive.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema provides descriptions for all 19 parameters (100% coverage), so the baseline is 3. The description's Args list repeats some schema info and adds example combinations (e.g., q='market crash', sentiment='negative'), but it omits many parameters and does not provide new semantic meaning beyond the schema descriptions. The examples are mildly additive but not essential.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Fetch financial and stock market news' with specificity about content types and a 48-hour time range, which distinguishes it from the crypto/latest/archive/sources sibling tools. However, it does not explicitly name or compare against these siblings, so it lacks the explicit differentiation seen in higher-scoring examples.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The examples (Apple stock news, market crash coverage, tech earnings) imply common use cases, but the description does not explicitly state when to use this tool over alternatives, nor does it mention any exclusions or 'use this instead of X' guidance. The usage context is implied rather than direct.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
newsdata_sourcesNews SourcesARead-onlyIdempotent
List available news sources with filtering options.
Browse and discover news sources indexed by NewsData.io, filtered by country, language, or category.
Args:
country: Filter sources by country code (e.g., 'us')
language: Filter sources by language (e.g., 'en')
category: Filter sources by category (e.g., 'technology')
prioritydomain: Filter by source priority tier
domainurl: Search for specific domain
Examples:
English tech sources: language="en", category="technology"
US news sources: country="us"
Top-tier sources: prioritydomain="top"
| Name | Required | Description | Default |
|---|---|---|---|
| country | No | Country code filter. Example: 'us' | |
| category | No | Category filter: business, entertainment, health, science, sports, technology, etc. | |
| language | No | Language code filter. Example: 'en' | |
| domainurl | No | Search for a specific domain URL | |
| prioritydomain | No | Filter by domain priority tier |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint and idempotentHint, so the tool is known safe. The description adds behavioral clarity by specifying filtering options and showing example filter combinations, which helps the agent anticipate results. It doesn't mention rate limits or pagination, but these are less critical given the read-only nature.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-organized with a summary, a bulleted Args list, and examples. It is concise and all information serves a purpose, with no redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple and read-only, with all parameters documented and examples provided. No output schema exists, but the description implies the return is a list of sources. It could be more explicit about response format, but given the simplicity, it's adequate.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the baseline is 3. The description adds value with concrete examples (e.g., language='en', category='technology') and clarifies prioritydomain values, making parameter usage more actionable.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'List available news sources with filtering options' and explains 'Browse and discover news sources indexed by NewsData.io'. This specifies the verb (list) and resource (sources), distinguishing it from sibling tools that handle news articles.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides context through examples like 'English tech sources' and 'US news sources', implying when to use the tool for source discovery. It doesn't explicitly exclude other tools but clearly scopes the use case to source listings rather than news content.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
5 tool updates
v1.0.0- First observed
newsdata_archive - First observed
newsdata_crypto - First observed
newsdata_latest - First observed
newsdata_market - First observed
newsdata_sources
TDQS
Scored across 5 tools
Each tool targets a distinct news domain or time range: latest (general recent), crypto, archive (historical), market (financial), and sources (directory). Descriptions clearly differentiate them, and filters are tailored to each use case.
All tool names follow the consistent `newsdata_<resource>` pattern, making the set predictable and easy to navigate. No mixed conventions or vague verbs.
Five tools is well-scoped for a news API, covering the core functionalities of fetching recent, specialized, and historical news, plus source discovery. It is neither thin nor bloated.
The set covers the primary news retrieval workflows (latest, crypto, market, archive) and source browsing. Minor gaps exist, such as a dedicated article-by-ID lookup or trending topics, but these do not significantly impede typical use cases.
Maintenance
Related MCP Connectors
Get access to real-time and historical news data including top headlines from global sources
NewsData.io MCP — wraps the NewsData.io global news API (newsdata.io)
Real-time curated crypto news for AI agents with sentiment, recaps, and search.
Real-time news search across 500,000+ sources in 60+ languages with sentiment and entities.
Related MCP Servers
AlicenseAqualityAmaintenanceGet access to real-time and historical news data including top headlines from global sources via AllNewsAPI. Supports multiple filter options including keyword search, category, language and more431,427 npm1MIT- FlicenseNot gradedqualityDmaintenanceEnables AI assistants to search news articles, get top headlines, and browse sources via the NewsAPI.org service.-
- AlicenseNot gradedqualityCmaintenanceWraps the NewsData.io global news API, enabling AI agents to access and query global news data through natural language.5 npmMIT
- AlicenseNot gradedqualityCmaintenanceEnables fetching top headlines and searching news archives from NewsAPI.org, allowing AI agents to access current and historical news data.MIT