andrewlwn77/google-trends-mcp
If you are the rightful owner of google-trends-mcp and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
The Google Trends MCP Server provides access to Google Trends data through the Google Trends Scraper API, allowing users to check API status, retrieve trending questions, and get currently trending topics.
google_trends_status
Check the status of the Google Trends API.
google_trends_questions
Get trending questions from Google Trends.
google_trends_trending
Get currently trending topics from Google Trends.
Google Trends MCP Server
ā ļø IMPORTANT SECURITY NOTICE: Never commit API keys to version control. This package requires an API key to be set via environment variable.
An MCP (Model Context Protocol) server that provides access to Google Trends data through the Google Trends Scraper API.
Features
- Status: Check the API status and health
- Questions: Get trending questions from Google Trends
- Trending: Get currently trending topics from Google Trends
Installation
Option 1: Using npx (Recommended)
# Set your API key first
export GOOGLE_TRENDS_API_KEY="your-api-key-here"
# Run directly with npx
npx @andrewlwn77/google-trends-mcp
Option 2: Global Installation
npm install -g @andrewlwn77/google-trends-mcp
Option 3: Local Development
git clone <repository-url>
cd google-trends-mcp
npm install
npm run build
Configuration
Optional: You can set the GOOGLE_TRENDS_API_KEY
environment variable. If not set, a default API key will be used.
- Get an API key from RapidAPI Google Trends Scraper
- Set the environment variable:
# Option 1: Export in your shell export GOOGLE_TRENDS_API_KEY="your-api-key-here" # Option 2: Create a .env file (for local development) echo "GOOGLE_TRENDS_API_KEY=your-api-key-here" > .env
ā ļø Security: Never commit your .env
file or API key to version control!
Usage
Running the server
# If installed globally or using npx
google-trends-mcp
# For local development
npm start
# For development with auto-reload
npm run dev
Available Tools
1. google_trends_status
Check the status of the Google Trends API.
Parameters:
language
(optional): Language code (default: "en")country
(optional): Country code (default: "US")
2. google_trends_questions
Get trending questions from Google Trends.
Parameters:
language
(optional): Language code (default: "en")country
(optional): Country code (default: "US")
3. google_trends_trending
Get currently trending topics from Google Trends.
Parameters:
language
(optional): Language code (default: "en")country
(optional): Country code (default: "US")
Example Usage with MCP Client
// Check API status
const status = await client.callTool('google_trends_status', {
language: 'en',
country: 'US'
});
// Get trending questions
const questions = await client.callTool('google_trends_questions', {
language: 'en',
country: 'US'
});
// Get trending topics
const trending = await client.callTool('google_trends_trending', {
language: 'en',
country: 'US'
});
Configuration
The server can be configured using environment variables:
GOOGLE_TRENDS_API_KEY
: Your RapidAPI key for the Google Trends Scraper API (optional, defaults to example key)
Development
Project Structure
google-trends-mcp/
āāā src/
ā āāā index.ts # Main MCP server implementation
ā āāā types.ts # TypeScript type definitions
āāā tests/
ā āāā integration/ # API integration tests
ā āāā unit/ # Unit tests
ā āāā helpers/ # Test helper utilities
āāā package.json
āāā tsconfig.json
āāā .env.example
āāā README.md
Type Safety
This server is written in TypeScript and provides full type safety for:
- API parameters
- API responses
- Error handling
- Google Trends data structures
License
MIT