Google Trends MCP Server
Enables retrieval and analysis of Google Trends data for any search term over the last 12 months. Provides structured timeline data with relative interest scores that can be filtered by geography and category.
README
Search Trends Explorer
This project combines a Google Trends visualizer built with Next.js and a Model Context Protocol (MCP) server that exposes the same data as a tool you can connect to OpenAI or any MCP-compatible client. Both experiences call SearchAPI.io to retrieve the last 12 months of relative interest for a search term.
Prerequisites
- Node.js 18.18+ (recommended to avoid engine warnings)
- A
SEARCH_API_KEYfrom SearchAPI.io
Create a .env file with:
SEARCH_API_KEY=your_key_here
Running the Next.js UI
npm install
npm run dev
Visit http://localhost:3000 to use the web interface.
Running the MCP Server
The MCP server exposes a single tool named fetch_google_trends over streamable HTTP.
npm install
npm run mcp:dev
The server listens on http://localhost:3000/mcp (honors the PORT env variable) and also serves GET /healthz for Render health checks.
Connecting from an MCP client
- MCP Inspector:
npx @modelcontextprotocol/inspector --server http://localhost:3000/mcp - OpenAI / other agents: add an HTTP MCP tool pointing to the same
/mcpendpoint.
When invoked, fetch_google_trends expects a JSON payload:
{
"term": "electric cars",
"geo": "US", // optional Google Trends geo code
"category": "0" // optional Google Trends category id
}
The tool responds with structured JSON containing the normalized timeline points.
Deploying the MCP server to Render.com
- Create a new Web Service from this repository.
- Set the start command to:
npm run mcp:start - Add the environment variable
SEARCH_API_KEY. - (Optional) Configure Render health checks to hit
/healthz.
Render will inject PORT, which the server automatically respects.
Testing & Linting
npm run lint
Project Structure Highlights
app/– Next.js app router with UI and/api/trendsendpoint.lib/trends.ts– Shared SearchAPI client used by both the API route and MCP tool.mcp/server.ts– Express + MCP server exposing thefetch_google_trendstool.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.