mcp-trendpulse
Allows searching Google News for articles by keyword, location, or topic, and fetching top news stories, with optional article summarization.
Click on "Install 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., "@mcp-trendpulseWhat are the latest news and trends for 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.
mcp-trendpulse
A powerful, robust Model Context Protocol (MCP) server that connects AI models to Google News RSS feeds and Google Trends. Easily pull historical weekly interest curves, calculate keyword growth rates, fetch trending queries, and analyze/summarize related articles using LLMs and NLP.
Features
Google News Integration: Trawl feeds for articles by keyword, location, or topic, and fetch top news stories.
Advanced Trends Analysis: Pull 5 years of weekly interest history, calculate growth velocities over custom windows, and retrieve real-time trending keywords.
NLP & LLM Summarization: Summarize article payloads and extract key concepts using client-side LLM sampling or local NLP.
Windows-Safe & Robust: Fully handles local session state, rates limits, and includes a fallback mechanism for sites that are difficult to scrape.
Related MCP server: newsapi-mcp
Installation
Using uv/uvx (recommended)
When using uv no specific installation is needed. We will
use uvx to directly run mcp-trendpulse.
Using PIP
pip install mcp-trendpulseAfter installation, you can run it as a script using:
python -m mcp_trendpulseConfiguration
Configure for Claude.app
Add to your Claude settings:
{
"mcpServers": {
"mcp-trendpulse": {
"command": "uvx",
"args": ["mcp-trendpulse@latest"]
}
}
}{
"mcpServers": {
"mcp-trendpulse": {
"command": "python",
"args": ["-m", "mcp_trendpulse"]
}
}
}Configure for VS Code
{
"mcp": {
"servers": {
"mcp-trendpulse": {
"command": "uvx",
"args": ["mcp-trendpulse@latest"]
}
}
}
}{
"mcp": {
"servers": {
"mcp-trendpulse": {
"command": "python",
"args": ["-m", "mcp_trendpulse"]
}
}
}
}Configure for Cursor Editor
Cursor supports MCP configuration globally or per-project:
Global Config: Edit
%USERPROFILE%\.cursor\mcp.json(Windows) or~/.cursor/mcp.json(macOS/Linux).Project Config: Create a
.cursor/mcp.jsonfile inside your project root.
Add the following to the mcpServers object:
{
"mcpServers": {
"mcp-trendpulse": {
"command": "python",
"args": ["-m", "mcp_trendpulse"]
}
}
}(Alternatively, you can open Cursor Settings -> Features -> MCP, and click "Add New Global MCP Server" to set it up via the UI).
Configure for Gemini / Antigravity IDE
If you are pair programming with Gemini in Antigravity IDE, add the server to your settings file at %APPDATA%\.gemini\antigravity-ide\mcp_config.json:
{
"mcpServers": {
"mcp-trendpulse": {
"command": "python",
"args": ["-m", "mcp_trendpulse"]
}
}
}Configure for ChatGPT (OpenAI)
Because ChatGPT resides in the cloud, it requires your local MCP server to be exposed via a secure HTTPS tunnel (e.g., using ngrok or similar):
Expose Server via Tunnel: Start your local MCP server using an HTTP/SSE bridge or expose its stdio endpoint using a secure tunnel tool.
Enable Developer Mode in ChatGPT: Open the ChatGPT desktop app, go to Settings → Apps & Connectors, and toggle on Developer Mode.
Register the Connector: Click + New Server (or "Create Connector") and paste the public HTTPS URL where your tunnel is hosted.
Environment Variables and Proxies
If you experience rate limits (429 Client Error) from Google Trends, or if your server is running in an environment without direct internet access, you can configure environment variables and proxies in one of two ways:
Option A: Using a .env file (Recommended)
You can create a .env file in the workspace directory (where the server is executed) and define the variables there. The server will automatically load them at startup:
HTTP_PROXY=http://your-proxy-address:port
HTTPS_PROXY=http://your-proxy-address:port
GOOGLE_TRENDS_DELAY=2.0Option B: Injecting via the client configuration
You can add environment variables directly to the "env" object in your Claude Desktop or VS Code JSON configuration:
"env": {
"HTTP_PROXY": "http://your-proxy-address:port",
"HTTPS_PROXY": "http://your-proxy-address:port",
"GOOGLE_TRENDS_DELAY": "2.0"
}On Windows, it is also recommended to pass system environment variables like PATH, USERPROFILE, LOCALAPPDATA, and APPDATA under the "env" block to ensure that internal Chromium browsers (used by Playwright) resolve and execute correctly:
"env": {
"PATH": "C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Users\\<Username>\\AppData\\Local\\Microsoft\\WindowsApps;C:\\Users\\<Username>\\AppData\\Local\\Programs\\uv",
"USERPROFILE": "C:\\Users\\<Username>",
"LOCALAPPDATA": "C:\\Users\\<Username>\\AppData\\Local",
"APPDATA": "C:\\Users\\<Username>\\AppData\\Roaming"
}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. |
get_trends | Pull 5 years of weekly Google Search interest for a keyword to inspect growth/seasonality curves. |
get_growth | Measure how much search interest changed over custom periods (e.g. 3M, 1Y) and compare growth side-by-side. |
get_ranked_trends | Get a ranked list of the highest-volume or fastest-growing keywords on Google Search right now. |
get_top_trends | Discover top trending topics on Google Trends right now without requiring a keyword query. |
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 mcp-trendpulse
Usage: mcp-trendpulse [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 mcp-trendpulseTo run from within locally installed project:
cd path/to/mcp-trendpulse
npx @modelcontextprotocol/inspector uv run mcp-trendpulseTesting
cd path/to/mcp-trendpulse
python -m pytestThis server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityCmaintenanceMCP server providing news article mention volume data, weekly series, growth percentages, and a live Google News feed as an AI tool.Last updatedMIT
- Alicense-qualityCmaintenanceA Model Context Protocol (MCP) server that provides real-time news intelligence using NewsAPI.ai. This server enables LLMs to search articles, track events, and analyze news through natural conversation.Last updated611MIT
- Flicense-qualityCmaintenanceAn AI-powered news aggregator MCP server that fetches live news from multiple sources, provides AI summaries via Claude, and performs sentiment analysis and trending topic detection.Last updated
- Alicense-qualityBmaintenanceA persistent news intelligence MCP server that enables AI agents to fetch, store, deduplicate, embed, and semantically query news from Google News across 141 countries and 41 languages.Last updatedMIT
Related MCP Connectors
MCP server for Google Veo AI video generation
MCP server for Google search results via SERP API
Driflyte MCP server which lets AI assistants query topic-specific knowledge from web and GitHub.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/AKzar1el/mcp-trendpulse'
If you have feedback or need assistance with the MCP directory API, please join our Discord server