Skip to main content
Glama
jemondragon

NewsData.io MCP Server

by jemondragon

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

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.

Related MCP server: News API MCP Server

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

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

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+

Environment Variables

Variable

Required

Description

NEWSDATA_API_KEY

Yes

Your NewsData.io API key

TRANSPORT

No

stdio (default) or http

PORT

No

HTTP port (default: 3000)

License

MIT

Available Tools

5 tools
newsdata_archiveNews ArchiveA
Read-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"

ParametersJSON Schema
NameRequiredDescriptionDefault
qNoSearch keywords. Use AND/OR/NOT operators. Example: 'bitcoin AND ethereum'
tagNoFilter by AI-detected tags
pageNoPagination token from previous response's nextPage value
sizeNoNumber of articles per request (free: max 10, paid: max 50)
imageNoFilter articles with (1) or without (0) images
videoNoFilter articles with (1) or without (0) videos
domainNoComma-separated source domains. Example: 'bbc.co.uk,cnn.com'
countryNoComma-separated country codes. Example: 'us,gb,ca'
qInMetaNoSearch keywords in title, URL, and meta description
to_dateNoEnd date: YYYY-MM-DD or YYYY-MM-DD HH:MM:SS
categoryNoComma-separated categories: business, crime, domestic, education, entertainment, environment, food, health, lifestyle, other, politics, science, sports, technology, top, tourism, world
languageNoComma-separated language codes. Example: 'en,es,fr'
qInTitleNoSearch keywords in article titles only
timezoneNoTimezone for results. Example: 'America/New_York'
domainurlNoComma-separated full domain URLs
from_dateNoStart date: YYYY-MM-DD or YYYY-MM-DD HH:MM:SS
sentimentNoFilter by article sentiment
excludedomainNoComma-separated domains to exclude
prioritydomainNoFilter by domain priority: top (top 10%), medium (top 30%), low (top 50%)
removeduplicateNoSet to '1' to remove duplicate articles

TDQS

A4/5.0
Behavior3/5

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.

Conciseness4/5

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.

Completeness3/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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 NewsA
Read-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"

ParametersJSON Schema
NameRequiredDescriptionDefault
qNoSearch keywords. Use AND/OR/NOT operators. Example: 'bitcoin AND ethereum'
tagNoFilter by AI-detected tags
coinNoComma-separated coin symbols. Example: 'BTC,ETH,SOL,DOGE'
pageNoPagination token from previous response's nextPage value
sizeNoNumber of articles per request (free: max 10, paid: max 50)
imageNoFilter articles with (1) or without (0) images
videoNoFilter articles with (1) or without (0) videos
domainNoComma-separated source domains. Example: 'bbc.co.uk,cnn.com'
countryNoComma-separated country codes. Example: 'us,gb,ca'
qInMetaNoSearch keywords in title, URL, and meta description
categoryNoComma-separated categories: business, crime, domestic, education, entertainment, environment, food, health, lifestyle, other, politics, science, sports, technology, top, tourism, world
languageNoComma-separated language codes. Example: 'en,es,fr'
qInTitleNoSearch keywords in article titles only
timezoneNoTimezone for results. Example: 'America/New_York'
domainurlNoComma-separated full domain URLs
sentimentNoFilter by article sentiment
timeframeNoLookback period: hours (1-48) or minutes (e.g., '120m')
excludedomainNoComma-separated domains to exclude
prioritydomainNoFilter by domain priority: top (top 10%), medium (top 30%), low (top 50%)
removeduplicateNoSet to '1' to remove duplicate articles

TDQS

A4.3/5.0
Behavior4/5

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.

Conciseness4/5

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.

Completeness4/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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 NewsA
Read-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"

ParametersJSON Schema
NameRequiredDescriptionDefault
qNoSearch keywords. Use AND/OR/NOT operators. Example: 'bitcoin AND ethereum'
tagNoFilter by AI-detected tags
pageNoPagination token from previous response's nextPage value
sizeNoNumber of articles per request (free: max 10, paid: max 50)
imageNoFilter articles with (1) or without (0) images
videoNoFilter articles with (1) or without (0) videos
domainNoComma-separated source domains. Example: 'bbc.co.uk,cnn.com'
countryNoComma-separated country codes. Example: 'us,gb,ca'
qInMetaNoSearch keywords in title, URL, and meta description
categoryNoComma-separated categories: business, crime, domestic, education, entertainment, environment, food, health, lifestyle, other, politics, science, sports, technology, top, tourism, world
languageNoComma-separated language codes. Example: 'en,es,fr'
qInTitleNoSearch keywords in article titles only
timezoneNoTimezone for results. Example: 'America/New_York'
domainurlNoComma-separated full domain URLs
sentimentNoFilter by article sentiment
timeframeNoLookback period: hours (1-48) or minutes (e.g., '120m')
excludedomainNoComma-separated domains to exclude
prioritydomainNoFilter by domain priority: top (top 10%), medium (top 30%), low (top 50%)
removeduplicateNoSet to '1' to remove duplicate articles

TDQS

A4.6/5.0
Behavior5/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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 NewsB
Read-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"

ParametersJSON Schema
NameRequiredDescriptionDefault
qNoSearch keywords. Use AND/OR/NOT operators. Example: 'bitcoin AND ethereum'
pageNoPagination token from previous response's nextPage value
sizeNoNumber of articles per request (free: max 10, paid: max 50)
imageNoFilter articles with (1) or without (0) images
videoNoFilter articles with (1) or without (0) videos
domainNoComma-separated source domains. Example: 'bbc.co.uk,cnn.com'
symbolNoComma-separated stock ticker symbols. Example: 'AAPL,MSFT,GOOGL'
countryNoComma-separated country codes. Example: 'us,gb,ca'
qInMetaNoSearch keywords in title, URL, and meta description
categoryNoComma-separated categories: business, crime, domestic, education, entertainment, environment, food, health, lifestyle, other, politics, science, sports, technology, top, tourism, world
languageNoComma-separated language codes. Example: 'en,es,fr'
qInTitleNoSearch keywords in article titles only
timezoneNoTimezone for results. Example: 'America/New_York'
domainurlNoComma-separated full domain URLs
sentimentNoFilter by article sentiment
timeframeNoLookback period: hours (1-48) or minutes (e.g., '120m')
excludedomainNoComma-separated domains to exclude
prioritydomainNoFilter by domain priority: top (top 10%), medium (top 30%), low (top 50%)
removeduplicateNoSet to '1' to remove duplicate articles

TDQS

B3.4/5.0
Behavior3/5

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.

Conciseness4/5

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.

Completeness3/5

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.

Parameters3/5

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.

Purpose4/5

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.

Usage Guidelines3/5

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 SourcesA
Read-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"

ParametersJSON Schema
NameRequiredDescriptionDefault
countryNoCountry code filter. Example: 'us'
categoryNoCategory filter: business, entertainment, health, science, sports, technology, etc.
languageNoLanguage code filter. Example: 'en'
domainurlNoSearch for a specific domain URL
prioritydomainNoFilter by domain priority tier

TDQS

A4.4/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

  1. 5 tool updatesv1.0.0
    • First observednewsdata_archive
    • First observednewsdata_crypto
    • First observednewsdata_latest
    • First observednewsdata_market
    • First observednewsdata_sources

TDQS

A4.1/5.0

Scored across 5 tools

Disambiguation5/5

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.

Naming Consistency5/5

All tool names follow the consistent `newsdata_<resource>` pattern, making the set predictable and easy to navigate. No mixed conventions or vague verbs.

Tool Count5/5

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.

Completeness4/5

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

ActivityInactive
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    A
    maintenance
    Get 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 more
    4
    3
    1,427 npm
    1
    MIT
  • F
    license
    Not graded
    quality
    D
    maintenance
    Enables AI assistants to search news articles, get top headlines, and browse sources via the NewsAPI.org service.
    -
  • A
    license
    Not graded
    quality
    C
    maintenance
    Wraps the NewsData.io global news API, enabling AI agents to access and query global news data through natural language.
    5 npm
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables fetching top headlines and searching news archives from NewsAPI.org, allowing AI agents to access current and historical news data.
    MIT