A search trend API designed from the ground up for AI agents and developers. Unlike fragile web scrapers or Google's unofficial pytrends library, Trends MCP provides a stable, normalized, MCP-native interface to search trend data across Google, YouTube, Amazon, and 9 more sources.
Tools for this workflow
get_trendsPull structured search trend data for any keyword - Google Search, YouTube, Amazon, and Google Shopping all return normalized volume and time series in the same format for easy comparison.
get_trends(keyword='electric scooter', source='google search', data_mode='weekly')
get_growthCompute search trend growth across multiple search surfaces in one call - Google Search, YouTube, and Amazon search all reflect different stages of the consumer journey and can be queried together.
get_growth(keyword='electric scooter', source='google search, youtube, amazon', percent_growth=['3M', '6M', '1Y'])
get_ranked_trendsGet the fastest-growing search terms on any platform right now - filter by minimum volume to exclude low-traffic noise and return only high-signal rising queries.
get_ranked_trends(source='google search', sort='wow_pct_change', min_volume=1000, limit=30)
get_top_trendsPull live trending search queries from Google Trends right now - the fastest way to see what people are suddenly searching for across categories without a keyword.
get_top_trends(type='Google Trends', limit=25)
FAQ