Loading...

Provides real-time cryptocurrency news via NewsData API, enabling AI agents to fetch headlines, search articles, and generate news summaries.
Boost this tool
Subscribe to listing upgrades or segmented pushes.
Provides real-time cryptocurrency news via NewsData API, enabling AI agents to fetch headlines, search articles, and generate news summaries.
This MCP server is relatively safe for read-only news retrieval. The main risk lies in the secure handling of the NewsData API key. It's risky if the API key is exposed or if the news data is used without proper verification.
Performance depends on the NewsData API's response times. Consider implementing caching for frequently accessed data.
Cost depends on NewsData API usage and subscription plan. Monitor API usage to avoid unexpected charges.
npx -y @smithery/cli install @kukapay/crypto-news-mcp --client claude{
"mcpServers": {
"Crypto News": {
"command": "python",
"args": [ "path/to/crypto-news-mcp/main.py"],
"env": {
"NEWS_API_KEY": "your_newsdata_api_key_here"
}
}
}
}get_latest_newsFetches the latest cryptocurrency news headlines.
Read-only operation, no side effects.
get_crypto_newsSearches for news articles by keyword with pagination support.
Read-only operation, no side effects.
summarize_newsGenerates a prompt for summarizing news about a specific topic.
Generates a prompt string, no external actions.
API Key
This MCP server is relatively safe for read-only news retrieval. The main risk lies in the secure handling of the NewsData API key. It's risky if the API key is exposed or if the news data is used without proper verification.
Limited to read-only operations, so autonomy is relatively safe. However, the quality of the news data should be considered.
Production Tip
Implement robust API key management and error handling for production use.
The news data is sourced from the NewsData API.
Yes, a NewsData API key is required.
The news data is updated in real-time, depending on the NewsData API's update frequency.
Yes, you can use the `get_crypto_news` tool to search for news related to specific cryptocurrencies.
The MCP server will not be able to fetch news data, and errors will be returned.
Store the API key as an environment variable and avoid hardcoding it in your code.
Yes, the NewsData API has rate limits depending on your subscription plan. Refer to their documentation for details.