google-news-trends-mcp
The google-news-trends-mcp server provides access to Google News and Google Trends data with the following capabilities:
Search Google News: Find articles by keyword, location, or topic
Get Top News: Retrieve top news stories from Google News
Google Trends: Fetch trending keywords for specific geographic locations
Summarize Content: Generate summaries of news articles using LLM Sampling or NLP
CLI Access: Use command-line tools to access all features
Customization: Configure the server for use with tools like Claude.app and VS Code
Offers access to Google Trends data, allowing retrieval of trending keywords based on specific geographic locations.
Provides tools for searching articles by keyword, location, and topic, as well as retrieving top news stories from Google News.
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., "@google-news-trends-mcpwhat are the top trending keywords in the US right now?"
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.
Google News Trends MCP
An MCP server that slurps data from Google News and Google Trends RSS endpoints, optionally distills it with LLM/NLP, and barfs out structured results.
Features
Trawl Google News RSS feeds for articles based on keyword, location, topic
Ingest top news stories from Google News
Snag trending search terms from Google Trends based on geographic input
Plug in LLM/NLP pipelines to condense article payloads and extract key concepts
Related MCP server: Google News13 MCP Server
Installation
Using uv/uvx (recommended)
When using uv no specific installation is needed. We will
use uvx to directly run google-news-trends-mcp.
Using PIP
pip install google-news-trends-mcpAfter installation, you can run it as a script using:
python -m google_news_trends_mcpConfiguration
Configure for Claude.app
Add to your Claude settings:
{
"mcpServers": {
"google-news-trends": {
"command": "uvx",
"args": ["google-news-trends-mcp@latest"]
}
}
}{
"mcpServers": {
"google-news-trends": {
"command": "python",
"args": ["-m", "google_news_trends_mcp"]
}
}
}Configure for VS Code
{
"mcp": {
"servers": {
"google-news-trends": {
"command": "uvx",
"args": ["google-news-trends-mcp@latest"]
}
}
}
}{
"mcp": {
"servers": {
"google-news-trends": {
"command": "python",
"args": ["-m", "google_news_trends_mcp"]
}
}
}
}Tools
The following MCP tools are available:
Tool Name | Description |
get_news_by_keyword | Search for news using specific keywords. |
get_news_by_location | Retrieve news relevant to a particular location. |
get_news_by_topic | Get news based on a chosen topic. |
get_top_news | Fetch the top news stories from Google News. |
get_trending_terms | Return trending keywords from Google Trends for a specified location. |
All of the news related tools have an option to summarize the text of the article using LLM Sampling (if supported) or NLP
CLI
All tools can be accessed from the command line using uv
uv run google-news-trends
Usage: google-news-trends [OPTIONS] COMMAND [ARGS]...
Find and download news articles using Google News.
Options:
--help Show this message and exit.
Commands:
keyword Find articles by keyword using Google News.
location Find articles by location using Google News.
top Get top news stories from Google News.
topic Find articles by topic using Google News.
trending Returns google trends for a specific geo location.Debugging
npx @modelcontextprotocol/inspector uvx google-news-trends-mcpTo run from within locally installed project
cd path/to/google-news-trends-mcp
npx @modelcontextprotocol/inspector uv run google-news-trends-mcpTesting
cd path/to/google-news-trends-mcp
uv run pytestAvailable Tools
5 toolsget_news_by_keywordC
Find articles by keyword using Google News.
| Name | Required | Description | Default |
|---|---|---|---|
| period | No | Number of days to look back for articles. | |
| keyword | Yes | Search term to find articles. | |
| full_data | No | Return full data for each article. If False a summary should be created by setting the summarize flag | |
| summarize | No | Generate a summary of the article, will first try LLM Sampling but if unavailable will use nlp | |
| max_results | No | Maximum number of results to return. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It only states 'Find articles by keyword using Google News' with no mention of default behavior, pagination, rate limits, result ordering, or what happens with empty results. This is critically insufficient.
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 a single concise sentence, but it sacrifices completeness for brevity. It earns its place in terms of efficiency, but it lacks critical usage and behavioral information. A more informative but still concise description would be better.
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 5 parameters and an output schema, the description is far too minimal. It does not explain how to use the tool effectively (e.g., combining parameters, default values). The output schema reduces the need to describe return values, but the description still fails to provide adequate high-level context.
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% (all 5 parameters have descriptions), so baseline is 3. The description adds no additional parameter meaning beyond what the schema already provides. It does not mention any parameter constraints or defaults.
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 'Find articles by keyword using Google News' clearly states the specific verb (find), resource (articles), and method (by keyword). It distinguishes from sibling tools like get_news_by_location and get_news_by_topic through the keyword focus.
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 no guidance on when to use this tool versus siblings (e.g., get_news_by_location, get_top_news). There is no mention of use cases, when not to use, or alternatives. The agent must infer from the name alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_news_by_locationC
Find articles by location using Google News.
| Name | Required | Description | Default |
|---|---|---|---|
| period | No | Number of days to look back for articles. | |
| location | Yes | Name of city/state/country. | |
| full_data | No | Return full data for each article. If False a summary should be created by setting the summarize flag | |
| summarize | No | Generate a summary of the article, will first try LLM Sampling but if unavailable will use nlp | |
| max_results | No | Maximum number of results to return. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations are not provided, so the description carries the full burden. It discloses that the source is Google News, which is useful. However, it does not mention behavioral traits such as rate limits, pagination, or how the location parameter is resolved (e.g., API moderation or geocoding). The description is minimal but not misleading.
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 a single sentence, which is concise but lacks structure. It does not provide an overview, usage notes, or output hints. Every word is not earning its place because it could be more informative without much length.
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 that there are 5 parameters and an output schema exists, the description is incomplete. It does not mention what the tool returns (e.g., article titles, links, metadata) or how the output schema is structured. The tool is moderately complex, and the description fails to provide enough context for an agent to invoke it 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?
Schema description coverage is 100%, so baseline is 3. The description does not add any parameter-level semantics beyond the schema. For example, it does not explain what 'full_data' means in practice or the relationship between 'full_data' and 'summarize'. The schema already covers the parameters adequately, so the description adds no extra value.
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 'Find articles by location using Google News' is vague. It does not specify the verb 'get' or 'list' and fails to differentiate from siblings like get_news_by_keyword or get_top_news. The purpose is implied but not clearly defined.
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?
No guidance on when to use this tool versus siblings. The description does not mention that this tool should be used for location-based queries, nor does it exclude cases where other tools (e.g., get_news_by_keyword) are more appropriate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_news_by_topicA
Find articles by topic using Google News. topic is one of WORLD, NATION, BUSINESS, TECHNOLOGY, ENTERTAINMENT, SPORTS, SCIENCE, HEALTH, POLITICS, CELEBRITIES, TV, MUSIC, MOVIES, THEATER, SOCCER, CYCLING, MOTOR SPORTS, TENNIS, COMBAT SPORTS, BASKETBALL, BASEBALL, FOOTBALL, SPORTS BETTING, WATER SPORTS, HOCKEY, GOLF, CRICKET, RUGBY, ECONOMY, PERSONAL FINANCE, FINANCE, DIGITAL CURRENCIES, MOBILE, ENERGY, GAMING, INTERNET SECURITY, GADGETS, VIRTUAL REALITY, ROBOTICS, NUTRITION, PUBLIC HEALTH, MENTAL HEALTH, MEDICINE, SPACE, WILDLIFE, ENVIRONMENT, NEUROSCIENCE, PHYSICS, GEOLOGY, PALEONTOLOGY, SOCIAL SCIENCES, EDUCATION, JOBS, ONLINE EDUCATION, HIGHER EDUCATION, VEHICLES, ARTS-DESIGN, BEAUTY, FOOD, TRAVEL, SHOPPING, HOME, OUTDOORS, FASHION.
| Name | Required | Description | Default |
|---|---|---|---|
| topic | Yes | Topic to search for articles. | |
| period | No | Number of days to look back for articles. | |
| full_data | No | Return full data for each article. If False a summary should be created by setting the summarize flag | |
| summarize | No | Generate a summary of the article, will first try LLM Sampling but if unavailable will use nlp | |
| max_results | No | Maximum number of results to return. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. It states articles are found via Google News but does not disclose behavioral traits such as rate limits, pagination, response format, or how parameters like full_data and summarize affect results. The description is too minimal to inform safe and effective invocation.
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?
Two-line description with no fluff: first line states purpose, second line lists topic options. Efficient and front-loaded. Every sentence serves a purpose.
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 5 parameters, an output schema, and no annotations, the description is adequate but not comprehensive. It explains the topic parameter well but offers no guidance on interpreting period, full_data, summarize, or max_results behavior. The output schema likely covers return format, so overall completeness is moderate.
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%, baseline 3. Description adds significant value for the topic parameter by enumerating 50+ valid values from the underlying source (Google News categories), which the schema only vaguely describes as 'Topic to search for articles.' This extra context helps the agent select correct inputs beyond what the schema provides.
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?
Description clearly states 'Find articles by topic using Google News' with a specific verb (Find), resource (articles by topic), and source (Google News). The list of valid topic values further clarifies scope and distinguishes from sibling tools like get_news_by_keyword, get_news_by_location, etc.
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?
No explicit guidance on when to use this tool versus alternatives. Does not mention when not to use it, prerequisites, or preferred scenarios compared to siblings like get_news_by_keyword or get_top_news. The description only lists topics, leaving the agent to infer usage context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_top_newsB
Get top news stories from Google News.
| Name | Required | Description | Default |
|---|---|---|---|
| period | No | Number of days to look back for top articles. | |
| full_data | No | Return full data for each article. If False a summary should be created by setting the summarize flag | |
| summarize | No | Generate a summary of the article, will first try LLM Sampling but if unavailable will use nlp | |
| max_results | No | Maximum number of results to return. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description bears the full burden of behavioral disclosure. It only states that the tool 'gets' news stories, but fails to mention whether it is read-only, whether authentication is needed, any rate limits, or how the 'topness' is determined. This is a significant gap for a tool that retrieves external data.
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 a single concise sentence with no fluff. It front-loads the core purpose. However, it could be slightly more informative without losing conciseness, such as mentioning that it returns a list of articles. It earns a 4 for being efficient but not maximally helpful.
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 4 parameters and an output schema, the description is too minimal. It does not explain how 'top' is defined, what regions or languages are covered, or any limitations. While the output schema exists and the rules state it need not describe return values, the description still lacks sufficient context for an agent to understand the tool's scope and behavior.
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?
With 100% schema description coverage, all four parameters (period, full_data, summarize, max_results) already have meaningful descriptions in the schema. The tool description adds no additional parameter semantics beyond what the schema provides, which is acceptable per baseline guidelines.
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 'Get top news stories from Google News' clearly states the verb 'Get' and the resource 'top news stories from Google News'. It distinguishes from sibling tools like get_news_by_keyword, get_news_by_location, get_news_by_topic, and get_trending_terms by focusing specifically on top stories from Google News, which is a distinct and well-understood category.
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 no guidance on when to use this tool versus the sibling tools. It does not mention any scenarios, prerequisites, or exclusions. The usage context is only implied by the tool name and description, which is insufficient for an agent to make optimal selection decisions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_trending_termsB
Returns google trends for a specific geo location.
| Name | Required | Description | Default |
|---|---|---|---|
| geo | No | Geographic target for trending terms. Supports four levels of granularity: - Worldwide: empty string '' - Country: ISO 3166-1 alpha-2 code, e.g. 'US', 'GB', 'CA' - Subdivision (state/province/region): ISO 3166-2 format 'CC-XX' or 'CC-XXX', e.g. 'US-CA' (California), 'BE-BRU' (Brussels) - US metro area: bare Nielsen DMA code (numeric string), e.g. '807' (San Francisco Bay Area), '501' (New York City) | US |
| full_data | No | Return full data for each trend including related news stories. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, and the description lacks details on what exactly is returned (e.g., time range, number of trends, whether it includes news stories). The output schema is present but not referenced in the description.
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 a single, concise sentence that front-loads the main purpose. While very brief, it avoids unnecessary words.
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 presence of output schema and detailed parameter descriptions, the description is minimally adequate but could benefit from specifying that trends are 'daily trending search terms'.
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 parameter descriptions comprehensively (100% coverage), so the description adds no additional meaning. Baseline 3 is appropriate.
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 the tool returns Google Trends for a specific geo location, using a specific verb and resource. It is distinct from sibling news-focused tools.
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?
No guidance on when to use or alternatives. The description does not mention scenarios for different geo granularities or when not to use this tool.
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.
4 tool updates
v0.2.10- Changed
get_news_by_keyword1 field changed- added
Input schema / properties / max_results / maximumAdded value: +25
- Changed
get_news_by_location1 field changed- added
Input schema / properties / max_results / maximumAdded value: +25
- Changed
get_news_by_topic1 field changed- added
Input schema / properties / max_results / maximumAdded value: +25
- Changed
get_top_news1 field changed- added
Input schema / properties / max_results / maximumAdded value: +25
5 tool updates
v0.2.6- Changed
get_news_by_keyword7 fields changed- added
Input schema / additionalPropertiesAdded value: +false - removed
Input schema / properties / full_data / titleRemoved value: -"Full Data" - removed
Input schema / properties / keyword / titleRemoved value: -"Keyword" - removed
Input schema / properties / max_results / titleRemoved value: -"Max Results" - removed
Input schema / properties / period / titleRemoved value: -"Period" - removed
Input schema / properties / summarize / titleRemoved value: -"Summarize" - changed
Output schema / (root)Previous value: -nullNew value: +{ + "properties": { + "result": { + "items": { + "additionalProperties": true, + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "result" + ], + "type": "object", + "x-fastmcp-wrap-result": true +}
- Changed
get_news_by_location7 fields changed- added
Input schema / additionalPropertiesAdded value: +false - removed
Input schema / properties / full_data / titleRemoved value: -"Full Data" - removed
Input schema / properties / location / titleRemoved value: -"Location" - removed
Input schema / properties / max_results / titleRemoved value: -"Max Results" - removed
Input schema / properties / period / titleRemoved value: -"Period" - removed
Input schema / properties / summarize / titleRemoved value: -"Summarize" - changed
Output schema / (root)Previous value: -nullNew value: +{ + "properties": { + "result": { + "items": { + "additionalProperties": true, + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "result" + ], + "type": "object", + "x-fastmcp-wrap-result": true +}
- Changed
get_news_by_topic7 fields changed- added
Input schema / additionalPropertiesAdded value: +false - removed
Input schema / properties / full_data / titleRemoved value: -"Full Data" - removed
Input schema / properties / max_results / titleRemoved value: -"Max Results" - removed
Input schema / properties / period / titleRemoved value: -"Period" - removed
Input schema / properties / summarize / titleRemoved value: -"Summarize" - removed
Input schema / properties / topic / titleRemoved value: -"Topic" - changed
Output schema / (root)Previous value: -nullNew value: +{ + "properties": { + "result": { + "items": { + "additionalProperties": true, + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "result" + ], + "type": "object", + "x-fastmcp-wrap-result": true +}
- Changed
get_top_news6 fields changed- added
Input schema / additionalPropertiesAdded value: +false - removed
Input schema / properties / full_data / titleRemoved value: -"Full Data" - removed
Input schema / properties / max_results / titleRemoved value: -"Max Results" - removed
Input schema / properties / period / titleRemoved value: -"Period" - removed
Input schema / properties / summarize / titleRemoved value: -"Summarize" - changed
Output schema / (root)Previous value: -nullNew value: +{ + "properties": { + "result": { + "items": { + "additionalProperties": true, + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "result" + ], + "type": "object", + "x-fastmcp-wrap-result": true +}
- Changed
get_trending_terms6 fields changed- added
Input schema / additionalPropertiesAdded value: +false - changed
Input schema / properties / full_data / descriptionPrevious value: -"Return full data for each trend. Should be False for most use cases."New value: +"Return full data for each trend including related news stories." - removed
Input schema / properties / full_data / titleRemoved value: -"Full Data" - changed
Input schema / properties / geo / descriptionPrevious value: -"Country code, e.g. 'US', 'GB', 'IN', etc."New value: +"Geographic target for trending terms. Supports four levels of granularity:\n- Worldwide: empty string ''\n- Country: ISO 3166-1 alpha-2 code, e.g. 'US', 'GB', 'CA'\n- Subdivision (state/province/region): ISO 3166-2 format 'CC-XX' or 'CC-XXX', e.g. 'US-CA' (California), 'BE-BRU' (Brussels)\n- US metro area: bare Nielsen DMA code (numeric string), e.g. '807' (San Francisco Bay Area), '501' (New York City)" - removed
Input schema / properties / geo / titleRemoved value: -"Geo" - changed
Output schema / (root)Previous value: -nullNew value: +{ + "properties": { + "result": { + "items": { + "additionalProperties": true, + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "result" + ], + "type": "object", + "x-fastmcp-wrap-result": true +}
5 tool updates
v1.0.0- First observed
get_news_by_keyword - First observed
get_news_by_location - First observed
get_news_by_topic - First observed
get_top_news - First observed
get_trending_terms
TDQS
Scored across 5 tools
Each tool has a clearly distinct purpose: keyword search, location search, topic-filtered search, top stories, and trending terms. No two tools overlap in functionality.
All tool names follow a consistent verb_noun pattern with snake_case (e.g., get_news_by_keyword, get_trending_terms), making the set predictable and easy to navigate.
Five tools cover the core news and trends functionality without being too sparse or excessive. Each tool contributes a unique capability.
The surface covers major news access patterns (keyword, location, topic, top stories) and adds trending terms. Minor gaps exist, like time-range filtering or source-specific searches, but the set feels complete for most common use cases.
Maintenance
Related MCP Connectors
Google News headlines, sources, and links via the Apify Google News API, hosted MCP.
Real-time news and trending topics from major sources
Web search, news, page retrieval, sitemaps, and trending topics through Search1API.
Real-time news search across 500,000+ sources in 60+ languages with sentiment and entities.
Related MCP Servers
- AlicenseBqualityDmaintenanceEnables access to Google News articles through search by keywords, topics, geolocation, and top headlines with filtering by country, language, source, and date.4MIT
- AlicenseBqualityDmaintenanceProvides tools to search and retrieve news across various categories including business, technology, science, and sports via the Google News API. It supports keyword searches, autocomplete suggestions, and region-specific news across multiple languages.11MIT
- FlicenseNot gradedqualityDmaintenanceProvides tools for fetching real-time news and performing AI-powered sentiment analysis and summarization using Mistral AI. It enables users to analyze news trends and extract structured insights through natural language queries.-
- AlicenseAqualityDmaintenanceProvides access to global news articles from over 60,000 sources through the GNews API. Supports keyword search, category browsing, and language customization.23 npmMIT