The official Google Trends site has no public API. Trends MCP fills that gap: structured Google Search trend data delivered to any AI assistant via the Model Context Protocol. Absolute volume estimates, multi-source comparison, 5-year history - all in one clean JSON response.
Tools for this workflow
get_trendsRetrieve raw 5-year weekly Google Search volume for any keyword as structured JSON - the programmatic alternative to scraping the Google Trends website.
get_trends(keyword='model context protocol', source='google search', data_mode='weekly')
get_growthCompute precise period-over-period Google Search growth with absolute volume estimates - the key capability missing from the official Google Trends site and from pytrends.
get_growth(keyword='model context protocol', source='google search', percent_growth=['3M', '1Y'])
get_ranked_trendsGet a programmatically queryable ranked list of the fastest-growing Google Search terms - no web scraping, no rate limiting, clean JSON your AI can act on immediately.
get_ranked_trends(source='google search', sort='wow_pct_change', limit=30)
get_top_trendsPull live Google Trends breakout topics in real time via API - the same data as the Google Trends 'trending searches' feed but structured for AI agents.
get_top_trends(type='Google Trends', limit=25)
FAQ