If you already connected Google Search Console to Claude AI, you have felt the shift: instead of exporting spreadsheets, you just ask a question and get an answer. Google Trends deserves the same treatment. It is one of the most underused free research tools in SEO — mostly because reading it manually, keyword by keyword, region by region, is tedious. Connected to Claude, it becomes a research assistant that tells you what is rising before your competitors notice.
This guide covers the same two reliable connection methods used for Google Search Console — Windsor.ai for a no-code setup, and Composio for developers who want a scriptable workflow — plus the specific prompts that make Google Trends data actually useful for content and SEO planning.
Why Connect Google Trends to Claude Instead of Using It Directly
Google Trends on its own only compares relative search interest for terms you manually type in, one chart at a time. It does not summarize, does not cross-reference against your existing content, and does not tell you what to do with the data. Claude, given live access via MCP, can pull multiple keyword trend lines in one request, compare them against your blog's existing topic coverage, and translate a spike in interest into a specific content recommendation — all inside one conversation.
Method 1: Connect Google Trends to Claude via Windsor.ai (No-Code)
If you already set up the Windsor.ai connector for Google Search Console, this method takes about two minutes — you are reusing the same authenticated Claude connector and simply adding a new data source inside Windsor.
Step 1: Add Google Trends as a Data Source in Windsor.ai
Log in to your Windsor.ai dashboard and select Google Trends from the available connectors. Unlike Search Console, Google Trends does not require account-level OAuth for public trend data — you configure the seed keywords, category, and geography you want Windsor to track and refresh.
Step 2: Confirm the Windsor Connector Is Linked in Claude
If you have already connected Windsor.ai to Claude for another data source, no additional setup is needed — Claude automatically has access to every data source you add inside your Windsor account, including Google Trends. If this is your first Windsor connection, go to Settings → Connectors in Claude, search for "Windsor.ai," and authorize it.
Step 3: Ask Claude Your First Trends Question
Open a new Claude chat and try:
Using the Windsor connector, show me the 90-day search interest trend for class="cd-str">"[your primary keyword]" and three related terms. Tell me if interest is rising, falling, or seasonal, and suggest one content angle based on the pattern.Method 2: Google Trends MCP with Claude Code (Developer Setup via Composio)
For a scriptable, repeatable setup — useful if you want a weekly trends digest — use Composio's MCP SDK the same way described in the Google Search Console + Claude guide, just swapping the toolkit name.
import os
from composio import Composio
from dotenv import load_dotenv
load_dotenv()
COMPOSIO_API_KEY = os.getenv(class="cd-str">"COMPOSIO_API_KEY")
USER_ID = os.getenv(class="cd-str">"USER_ID")
composio_client = Composio(api_key=COMPOSIO_API_KEY)
# Create a Tool Router session for Google Trends
composio_session = composio_client.create(
user_id=USER_ID,
toolkits=[class="cd-str">"google_trends"],
)
COMPOSIO_MCP_URL = composio_session.mcp.url
print(fclass="cd-str">"claude mcp add --transport http trends-composio \"{COMPOSIO_MCP_URL}\" --headers \"X-API-Key:{COMPOSIO_API_KEY}\"")Run the script, copy the printed claude mcp add command, paste it into your terminal, restart Claude Code, and confirm it registered with /mcp. If you already have a Composio session running for Search Console, you can register both toolkits under the same session by passing toolkits=["google_search_console", "google_trends"] — letting Claude cross-reference ranking data with search-interest data in a single conversation.
5 High-Value Google Trends + Claude Prompts
1. Content Calendar from Seasonal Spikes
Using Google Trends data, identify the seasonal search pattern for [your industry topic] over the last 24 months. Tell me the exact weeks interest starts rising each year, and recommend a publishing date for a new article so it's indexed and ranking before the spike.2. Rising vs Declining Topic Comparison
Compare search interest trends for these five topics related to my industry: [list them]. Rank them by growth rate over the last 12 months, and flag any that are declining so I know what NOT to invest content into.3. Regional Demand Mapping
Show me which US states or countries have the highest search interest for [keyword]. Cross-reference this against my Google Search Console country data — am I already getting impressions from my highest-demand regions, or is there a mismatch?4. Breakout Query Discovery
Find class="cd-str">"breakout" related queries (Google's term for searches that grew more than 5,000%) connected to [your seed keyword] in the last 90 days. For each one, tell me if it represents a viable new content topic or blog post idea.5. Trend-to-Content Gap Analysis
Combine my Google Search Console query data with Google Trends data for the same topics. Identify keywords where search interest is rising in Trends but I have no impressions in GSC — these are content gaps I should fill first.Why This Pairs So Well With Google Search Console Data
Google Trends tells you what people are starting to search for. Google Search Console tells you what you currently rank for. Used separately, each gives you half the picture. Connected to the same Claude conversation, you can ask it to cross-reference both in seconds — finding topics with rising demand where you have zero existing content, which is exactly the kind of low-competition opportunity worth writing about first.
If you have not set up the Search Console connector yet, start with my complete guide to connecting Google Search Console to Claude AI — the Windsor and Composio setup steps are nearly identical, and running both connectors together is where this workflow gets genuinely powerful. If your business also sells products, my guide on connecting Google Merchant Center to Claude AI extends the same pattern to Shopping feed data. Need help setting up an AI-driven SEO workflow for your business? Let's talk →

