VOOZH about

URL: https://apify.com/red.cars/google-trends-mcp

⇱ Google Trends MCP - AI Agent Trend Intelligence Β· Apify


πŸ‘ Google Trends MCP β€” AI Agent Trend Intelligence avatar

Google Trends MCP β€” AI Agent Trend Intelligence

Pricing

Pay per event + usage

Go to Apify Store

Google Trends MCP β€” AI Agent Trend Intelligence

Track Google Trends data for AI agents. Daily trending searches, topic interest over time, related queries. Built for content marketers, news bots, and social media schedulers.

Pricing

Pay per event + usage

Rating

0.0

(0)

Developer

πŸ‘ AutomateLab

AutomateLab

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

19 days ago

Last modified

Share

Google Trends MCP

AI-native Google Trends API for autonomous workflows.

Programmatic access to daily trending searches, interest over time, related queries, topic breakdowns, and category filtering. Built for AI agents, content marketers, SEO tools, and market intelligence workflows.


Hero

β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚ GOOGLETRENDSMCP β”‚
β”‚ β”‚
β”‚ Daily Trends β”‚ Interest Over Time β”‚ Related Queries β”‚
β”‚ β”‚
β”‚ Categories β”‚ Topic Breakdown β”‚ Multi-Geo β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

Quick Start

{
"tool":"get_daily_trending",
"arguments":{
"location":"US",
"category":"0"
}
}

Tools

1. get_daily_trending

Get what's trending right now β€” top daily search queries that are spiking.

When to call: You need real-time trending topics for content planning, news alerts, or social media scheduling.

Example AI prompt: "What's trending in technology today?"

Input:

{
"location":"string",// Required: US, GB, DE, FR, etc.
"category":"string"// Optional: 0=all, 1=Art, 2=Science, etc.
}

Output:

{
"trending":[
{"query":"Apple keynote","traffic":100000,"delta":"+1200%"},
{"query":"SpaceX launch","traffic":85000,"delta":"+850%"}
],
"location":"US",
"category":"all",
"timestamp":"2026-05-17T12:00:00Z"
}

PPE: $0.03


2. get_topic_trends

Get interest over time for a specific topic β€” historical trend lines with daily/weekly/monthly granularity.

When to call: You need to analyze how a topic's popularity has changed over time, identify seasonality, or compare multiple topics.

Example AI prompt: "Show me the interest over time for electric vehicles over the past 3 years."

Input:

{
"topic":"string",// Required: Topic name
"time_range":"string"// Optional: today 1-m, today 3-m, today 12-m, today 5-y
}

Output:

{
"topic":"electric vehicles",
"interest_over_time":[
{"date":"2026-02","score":45},
{"date":"2026-03","score":52},
{"date":"2026-04","score":61}
],
"peak":{"date":"2026-04","score":68},
"average":54,
"time_range":"today 3-m"
}

PPE: $0.05


3. get_related_queries

Get related queries for a seed topic β€” what people also search for alongside your query.

When to call: You need keyword research, content ideas, or to understand search intent beyond your initial query.

Example AI prompt: "What queries are related to 'machine learning'?"

Input:

{
"seed_query":"string",// Required: Seed search query
"geo":"string",// Optional: US, GB, DE, etc.
"category":"string"// Optional: 0-99
}

Output:

{
"seed_query":"machine learning",
"top_queries":[
{"query":"machine learning course","value":100,"category":"rising"},
{"query":"machine learning algorithms","value":85,"category":"top"}
],
"rising_queries":[
{"query":"machine learning for beginners","value":"+500%"}
],
"geo":"US"
}

PPE: $0.03


4. get_category_browse

Browse Google Trends categories to discover available topics and subtopics.

When to call: You want to explore what categories are available for trend analysis.

Example AI prompt: "What categories are available in Google Trends?"

Input:

{
"category":"string"// Optional: Category ID, defaults to all
}

Output:

{
"categories":[
{"id":0,"name":"All categories","subtopics":[]},
{"id":1,"name":"Art","subtopics":["Photography","Art History"]},
{"id":2,"name":"Science","subtopics":["Physics","Chemistry"]}
]
}

PPE: $0.03


5. search_trends

Combined search that returns interest over time, top queries, and rising queries in one call.

When to call: You need a complete trend analysis for a query β€” multi-signal in a single call.

Example AI prompt: "Give me a complete trend analysis for 'AI assistants'."

Input:

{
"query":"string",// Required: Search query
"geo":"string",// Optional: US, GB, DE, etc.
"time_range":"string"// Optional: today 1-m, today 3-m, today 12-m
}

Output:

{
"query":"AI assistants",
"interest_over_time":[...],
"top_queries":[...],
"rising_queries":[...],
"geo":"US",
"time_range":"today 3-m",
"timestamp":"2026-05-17T12:00:00Z"
}

PPE: $0.05


Data Source

Google Trends public API β€” no API key required.


How It Compares

FeatureGoogle Trends MCPSimilarwebManual Google Trends
Price$0.03–$0.05/call$100+/moFree but manual
AI-native (MCP)βœ… Yes❌ No❌ No
Programmaticβœ… Yesβœ… Yes❌ No
Historical dataβœ… 1+ yearsβœ… YesLimited
Related queriesβœ… Yesβœ… Yesβœ… Manual
Real-time trendsβœ… Yesβœ… Yesβœ… Manual

Why choose our MCP:

  • MCP protocol is designed for AI agent integration β€” incorporate trend data into autonomous workflows
  • $0.03–$0.05 per call vs $100+/month subscriptions β€” 50x cheaper for high-volume AI use cases
  • Batch-friendly: chain multiple trend queries for competitive analysis pipelines
  • No manual work β€” fully automated trend detection and reporting

Pricing

ActionPPE Cost
get_daily_trending$0.03
get_topic_trends$0.05
get_related_queries$0.03
get_category_browse$0.03
search_trends$0.05

Architecture

β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚ google-trends-mcp β”‚
β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
β”‚ β”‚
β”‚ Input:{ query, geo?, category?, time_range?} β”‚
β”‚ β”‚
β”‚ β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” β”‚
β”‚ β”‚ Google Trends Data Sources β”‚ β”‚
β”‚ β”‚ β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” β”‚ β”‚
β”‚ β”‚ β”‚ Trending β”‚ β”‚ Interest β”‚ β”‚ Related β”‚ β”‚ β”‚
β”‚ β”‚ β”‚ Daily β”‚ β”‚ Time β”‚ β”‚ Queries β”‚ β”‚ β”‚
β”‚ β”‚ β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜ β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜ β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜ β”‚ β”‚
β”‚ β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜ β”‚
β”‚ β”‚
β”‚ Output:{ trending[], interest_over_time[], related[]} β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

Cross-Sells

content-marketing-mcp (coming soon)

For content marketing workflows β€” trending topics fuel content generation.


MCP Protocol

This actor implements the MCP (Model Context Protocol) for AI agent integration.

Endpoint: /mcp

Request format:

{
"tool":"get_daily_trending",
"arguments":{"location":"US","category":"0"}
}

Response format:

{
"success":true,
"result":{ ... }
}

Deployment

This actor runs in standby mode on Apify, enabling efficient AI agent integration with pay-per-event pricing.

Actor ID: google-trends-mcp

Pricing: Event-based (PPE) β€” $0.03–$0.05 per call


Status

  • Created: 2026-05-17
  • Data source: Google Trends public API (no auth required)
  • Tools: 5 (get_daily_trending, get_topic_trends, get_related_queries, get_category_browse, search_trends)
  • PPE range: $0.03–$0.05

You might also like

Google Trends Scraper β€” Interest, Regions & Queries

khadinakbar/google-trends-scraper

Extract all 5 Google Trends data types: keyword interest over time, by region, related queries, related topics & daily trending searches. No API key.

50

Google Trends Scraper β€” Trending Searches & Interest Over Time

maged120/google-trends-scraper

Extract data from Google Trends β€” trending searches, interest-over-time graphs, related queries, and regional interest breakdowns for any keyword.

Google Trends Scraper

rastriq/google-trends-scraper

Extract search interest data from Google Trends: interest over time, interest by region, related queries, and daily trending searches. Supports multiple keywords and countries in one run. No API key needed.

πŸ‘ User avatar

Rastriq β€” Structured data from the world

2

Google Trends Scraper πŸ’Ž

scraperpro/google-trends-scraper

Fastest and Cheapest Google Trends Scraper: All in one, πŸ”₯real time trending searches, interest over time, interest by region, and Related queries and topics, and more

132

3.9

Google Trends Scraper

scrapebase/google-trends-scraper

Google Trends Scraper extracts trending search data from Google Trends. It collects keywords, interest over time, related queries, regional popularity, and trend metrics. Ideal for SEO research, market analysis, content planning, and monitoring emerging search trends.

Google Trends Scraper

sourabhbgp/google-trends-scraper

Extract Google Trends data: daily trending searches, keyword interest over time, related queries and topics, regional interest. 150+ countries, category filters, Google property selection (Web, YouTube, News, Images, Shopping). From $1 per 1,000 trending results.

52

Google Trends Scraper - Interest, Regions & Trends

scrapesage/google-trends-scraper

Scrape Google Trends with no browser or API key: interest over time, interest by region, related & rising queries/topics, multi-keyword comparison, and real-time Trending Now searches with traffic & news. Web, YouTube, News, Image & Shopping trends. Monitoring mode.