Google Trends MCP β AI Agent Trend Intelligence
Pricing
Pay per event + usage
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
Actor stats
0
Bookmarked
2
Total users
1
Monthly active users
19 days ago
Last modified
Categories
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
| Feature | Google Trends MCP | Similarweb | Manual Google Trends |
|---|---|---|---|
| Price | $0.03β$0.05/call | $100+/mo | Free but manual |
| AI-native (MCP) | β Yes | β No | β No |
| Programmatic | β Yes | β Yes | β No |
| Historical data | β 1+ years | β Yes | Limited |
| 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
| Action | PPE 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
