pytrends scrapes Google Trends and breaks when Google changes its frontend. Trends MCP is the AI-native replacement: structured trend data via the Model Context Protocol, with absolute volume estimates, multi-platform queries, and no maintenance overhead.
Tools for this workflow
get_trendsGet the same historical time series pytrends returns - but with absolute volume estimates added, no scraping fragility, and no Python script required.
get_trends(keyword='electric vehicles', source='google search', data_mode='weekly')
get_growthReplace pytrends' interest_over_time with structured growth metrics across 15+ platforms in one call - pytrends is Google-only and returns relative data only.
get_growth(keyword='electric vehicles', source='google search, youtube, reddit', percent_growth=['1Y', '3M'])
get_ranked_trendsDiscover top-trending keywords with growth rankings - a capability pytrends offers only partially via related_queries, with no cross-platform support.
get_ranked_trends(source='google search', sort='yoy_pct_change', limit=30)
get_top_trendsPull live breakout trending searches - the equivalent of pytrends' trending_searches but delivered as structured JSON your AI can reason over directly.
get_top_trends(type='Google Trends', limit=25)
FAQ