Google Trends Tools

Google Trends analysis, search interest data, and trending topics

Overview

Google Trends Tools is a production-ready Model Context Protocol (MCP) server built to give AI agents reliable, structured access to google trends tools capabilities.

It acts as a standardized bridge between large language models and real-time data. Instead of relying on static training knowledge, models can retrieve live results, web content, and intelligence through a controlled MCP interface.

By integrating this MCP server, developers enable models such as Claude, GPT-4, Gemini, and open-source LLMs to:

• Execute structured Google Trends Tools queries • Access live data in real time • Retrieve specialized information programmatically • Ground responses in verifiable external sources

This architecture significantly improves factual accuracy, reduces hallucination risk, and expands what AI systems can accomplish in research, automation, monitoring, and decision-support workflows.

Google Trends Tools is designed for teams building production AI agents that require dependable, real-time access to the google trends within a standardized MCP ecosystem.

Highlights

Protocol
MCP v1.0
Security
OAuth 2.0
Access
Real-time
Tools
4 Tools

Standardized bridge for real-time model context.

Installation

Connect this server to your local or remote agent environment.

mcp_config.json
{
  "mcpServers": {
    "mcp360": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://connect.mcp360.ai/v1/google-trends/mcp?token=YOUR_API_KEY"
      ]
    }
  }
}
Replace YOUR_API_KEY with your actual key from the dashboard.

Skills & Capabilities

What this MCP server can do for your AI agents.

CAPABILITIES
--- name: google-trends description: Analyze Google search trends over time, discover interest by geographic region, find related search queries and topics, and identify trending keywords. Use when users need to research keyword popularity, analyze search trends, plan content strategy based on seasonal interest, discover related topics, or identify emerging trends in any industry. metadata: author: MCP360 version: "1.0.0" tags: - Trends - Analytics - Market Research - SEO - Content Strategy - Google Trends - Search Intelligence - Data Analysis keywords: - trends - google trends - analytics - interest - popularity - market - data - search volume - trending - insights - trend analysis - search trends - keyword trends creditsPerUse: 1 isPremium: false --- # Google Trends Tools Professional Google Trends analysis API for market research, content strategy, and search intelligence. Track keyword popularity over time, analyze regional interest patterns, discover related queries and topics, and identify emerging trends for data-driven decision making. ## Core Capabilities - **Interest Over Time**: Track search interest for keywords across custom time periods, and returns time-series data with relative popularity scores, trend direction, peak periods, and seasonal patterns for forecasting - **Interest By Region**: Analyze geographic distribution of search interest by country, state, or city, and returns regional popularity scores, heat map data, top locations, and geographic trends for market targeting - **Related Queries**: Discover search queries related to your keywords that are trending, and returns rising queries with breakout scores, top related searches, query variations, and search intent patterns for keyword expansion - **Related Topics**: Find trending topics and themes connected to your search terms, and returns topic clusters with relevance scores, breakout topics, category associations, and content opportunities for strategy planning ## API Access ### MCP360 Connect Endpoints - **Base URL**: `https://connect.mcp360.ai/api/v1` - **Service Path**: `google-trends` - **Authentication**: Bearer token (API key required) ### Service Metadata Endpoint ```bash curl "https://connect.mcp360.ai/api/v1/google-trends" \ -H "Authorization: Bearer YOUR_API_KEY" ``` ### Tool Execution Endpoint ```bash curl -X POST "https://connect.mcp360.ai/api/v1/google-trends/{tool_name}" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{...parameters...}' ``` ## Available Tools ### Get Interest Over Time **Tool Name:** `get_interest_over_time` **Credits Required:** 1 **Parameters:** - `keyword` (string, required): Search term to analyze like "artificial intelligence" or "electric cars" - `timeframe` (string, optional): Time period like "today 3-m" (3 months), "today 12-m" (1 year), "today 5-y" (5 years), "all" (2004-present) (Default: "today 12-m") - `geo` (string, optional): Geographic location code like "US", "GB", "JP", "" for worldwide (Default: "") - `category` (number, optional): Google category ID for filtering like 7 (Finance), 16 (News) (Default: 0 for all) **Example:** ```bash curl -X POST "https://connect.mcp360.ai/api/v1/google-trends/get_interest_over_time" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "keyword": "remote work", "timeframe": "today 12-m", "geo": "US" }' ``` ### Get Interest By Region **Tool Name:** `get_interest_by_region` **Credits Required:** 1 **Parameters:** - `keyword` (string, required): Search term like "machine learning" or "plant-based diet" - `resolution` (string, optional): Geographic level - "COUNTRY", "REGION" (state/province), "CITY" (Default: "COUNTRY") - `timeframe` (string, optional): Time period like "today 3-m", "today 12-m" (Default: "today 12-m") **Example:** ```bash curl -X POST "https://connect.mcp360.ai/api/v1/google-trends/get_interest_by_region" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "keyword": "cryptocurrency", "resolution": "REGION", "timeframe": "today 12-m" }' ``` ### Get Related Queries **Tool Name:** `get_related_queries` **Credits Required:** 1 **Parameters:** - `keyword` (string, required): Main search term like "content marketing" or "fitness training" - `geo` (string, optional): Country code like "US", "UK", "CA" (Default: "") - `timeframe` (string, optional): Analysis period like "today 3-m", "today 12-m" (Default: "today 12-m") **Example:** ```bash curl -X POST "https://connect.mcp360.ai/api/v1/google-trends/get_related_queries" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "keyword": "digital marketing", "geo": "US", "timeframe": "today 12-m" }' ``` ### Get Related Topics **Tool Name:** `get_related_topics` **Credits Required:** 1 **Parameters:** - `keyword` (string, required): Search keyword like "sustainable fashion" or "cloud computing" - `geo` (string, optional): Geographic region like "US", "GB" (Default: "") - `timeframe` (string, optional): Time range like "today 3-m", "today 12-m" (Default: "today 12-m") **Example:** ```bash curl -X POST "https://connect.mcp360.ai/api/v1/google-trends/get_related_topics" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "keyword": "artificial intelligence", "geo": "US", "timeframe": "today 12-m" }' ``` ## Authentication ```bash -H "Authorization: Bearer YOUR_API_KEY" ``` ## Rate Limiting - All tools: 1 credit per request - Rate limit: 1000 requests per hour - Concurrent requests: Up to 10 parallel calls ## Support - **Blog & Tutorials**: https://mcp360.ai/blog - **Contact**: https://mcp360.ai/contact
These capabilities are available through the MCP protocol interface.

Available Tools

Technical specifications for the 4 available protocol tools.

4 tools

get_interest_by_region tool

Input Specification
{
  "type": "object",
  "required": [
    "query"
  ],
  "properties": {
    "query": {
      "type": "string",
      "description": "Search term or topic to analyze"
    },
    "country": {
      "type": "string",
      "description": "Country code (e.g., 'US', 'GB')"
    },
    "timeframe": {
      "type": "string",
      "default": "today 12-m",
      "description": "Time range (e.g., 'today 12-m', 'today 3-m')"
    },
    "resolution": {
      "type": "string",
      "description": "Geographic resolution: 'COUNTRY', 'REGION', 'CITY', 'DMA'"
    }
  },
  "additionalProperties": false
}
Output Response
{
  "type": "object",
  "properties": {
    "query": {
      "type": "string"
    },
    "timeframe": {
      "type": "string"
    },
    "resolution": {
      "type": "string"
    },
    "interest_by_region": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "geo": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "values": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "query": {
                  "type": "string"
                },
                "value": {
                  "type": "string"
                },
                "extracted_value": {
                  "type": "number"
                }
              }
            }
          }
        }
      }
    }
  }
}

Direct API Access

Production-ready REST endpoints for custom integrations.

POSTServer Metadata
/api/v1/google-trends
curl "https://connect.mcp360.ai/api/v1/google-trends" \
  -H "Authorization: Bearer YOUR_API_KEY"
POSTExecute Tool
/api/v1/google-trends/{tool_name}
curl -X POST "https://connect.mcp360.ai/api/v1/google-trends/get_interest_by_region" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "query": "string"
}'
Authentication

To authenticate, include your API key in the Authorization header using the Bearer scheme. Alternatively, you can use the X-API-KEY header.

Infrastructure

Unified MCP Gateway

One hub for 100+ production-ready tools with centralized management.

Unified API Key

Access 100+ MCP servers with a single authentication token.

Instant Testing

Test and debug any MCP server instantly in our integrated environment.

Centralized Billing

One monthly subscription for all your AI tool integrations and credits.

Real-World Applications

Practical Use Cases

Discover how Google Trends Tools solves real problems and drives measurable results across different scenarios

Content Calendar Planning

Identify trending topics in your industry to plan blog posts and content that captures search interest

Example

"Check what topics in 'digital marketing' are trending to decide on your next article"

Key Benefits

  • SEO-driven content
  • Higher organic reach
  • Timely relevance

Product Launch Strategy

Analyze search trends before launching a new product to understand market interest and timing

Example

"Track trending searches before launching a fitness app to find peak interest months"

Key Benefits

  • Better market timing
  • Informed positioning
  • Reduced marketing waste

Competitive Intelligence

Monitor competitor keywords and emerging market trends to stay ahead

Example

"Track search interest in competitor products vs. yours over time"

Key Benefits

  • Market awareness
  • Competitive advantage
  • Strategic planning

News & Events Analysis

Understand what topics are spiking in real-time and why

Example

"Discover why searches for 'home office furniture' are surging to capitalize on the trend"

Key Benefits

  • Real-time insights
  • Trend prediction
  • Viral potential detection

Geographic Market Research

Identify regional differences in search interests to localize marketing

Example

"See that 'winter clothing' trends differently across regions to customize campaigns"

Key Benefits

  • Localized targeting
  • Regional customization
  • Better ROI

Frequently Asked Questions

What is Google Trends Tools?

Google Trends Tools is an MCP server that provides structured access to google trends tools capabilities through a standardized protocol, enabling AI models to retrieve and process real-time data.

Which AI models are supported?

Any model that supports MCP protocol including Claude (via Claude Desktop), GPT-4, Gemini, and open-source LLMs through compatible frameworks.

How do I authenticate?

The server supports OAuth 2.0 authentication with API keys. You'll receive credentials upon registration which can be configured in your MCP client.

Is there rate limiting?

Yes, rate limits apply based on your subscription tier. Free tier includes generous limits for development, with higher limits available in paid plans.

Can I use this in production?

Absolutely. Google Trends Tools is designed for production use with enterprise-grade reliability, security, and performance.

Deploy AI agent with Google Trends Tools today.

Start building production-ready AI agent integrations in minutes with standardized protocol access.

Enterprise Ready
Secure OAuth
24/7 Support