By continuing you agree to our Terms & Privacy Policy.
Nothing there? Check spam or .
Optional — tell us more to tailor your setup
What are you working on?
How will you connect?
See it in action. Watch Claude call TrendsMCP and get back live trend data. No API key wrangling, no glue code.
Call the REST API directly from your own code. Same JSON schema as the live API.
import requestsresponse = requests.post("https://api.trendsmcp.ai/api",headers={"Authorization": "Bearer YOUR_API_KEY"},json={"mode": ,"source": ,"keyword": "bitcoin","percent_growth": []"type": ,"limit": 10})print(response.json())
Data Sources
Proprietary trend scores on a 0–100 index for consistent cross-platform comparison.
Two types of sources are available, accessed via different operations. Keyword sources return a historical time series or growth metric for a specific keyword. Live feeds return the top-ranked items on a platform right now. No keyword needed.
Pass the source value below in your request body alongside keyword. On REST, set mode to "get_time_series" (time series) or "get_growth" (period-over-period %). For Get Growth, pass one source or a comma-separated list (e.g. amazon, tiktok, youtube). For Get Trends, pass one source per request. Scores are normalized to a 0–100 scale where the pipeline supports it.
| source | Description | Keyword format |
|---|---|---|
google search | Google search volume | Any keyword or phrase |
google images | Google image search volume | Any keyword or phrase |
google news | Google News search volume | Any keyword or phrase |
google shopping | Google Shopping search volume | Any keyword or phrase |
youtube | YouTube search volume | Any keyword or phrase |
tiktok | TikTok hashtag volume | Hashtag or topic |
reddit | Subreddit subscribers | Subreddit name only, no r/ prefix |
amazon | Amazon product search volume | Product name or category |
wikipedia | Wikipedia page views | Article title or topic |
news volume | News article mention volume | Any keyword or phrase |
news sentiment | News sentiment score (positive / negative) | Any keyword or phrase |
app downloads | Android app download estimates (AppBrain) | Android bundle ID e.g. com.openai.chatgpt |
app rankings | Android app store ranking charts (AppBrain) | Android bundle ID e.g. com.himshers.hims |
npm | npm package weekly downloads | Exact package name, case-sensitive e.g. react, @babel/core |
steam | Steam concurrent players (monthly) | Game display name e.g. Elden Ring (first Steam search result) |
Pass the type value below with mode: "get_top_trends". No keyword needed. Optional category filter for Amazon Best Sellers by Category and Top Websites. Returns the current ranked leaders on that platform (e.g. the top 25 trending hashtags on TikTok right now).
| type | Platform / feed |
|---|---|
Google Trends | Top trending search terms on Google right now |
Google News Top News | Top news stories from Google News |
TikTok Trending Hashtags | Top trending hashtags on TikTok |
TikTok Trending Searches | Top trending search terms on TikTok |
TikTok Shop Hot Products | Top hot products on TikTok Shop |
YouTube Trending | Top trending videos on YouTube |
X (Twitter) Trending | Top trending topics on X |
Reddit Hot Posts | Hottest posts on Reddit's front page |
Reddit World News | Top posts in r/worldnews |
Wikipedia Trending | Most-viewed Wikipedia articles today |
Amazon Best Sellers Top Rated | Amazon top-rated best sellers across all categories |
Amazon Best Sellers by Category | Amazon best sellers filtered by product category |
App Store Top Free | Top free apps on the iOS App Store |
App Store Top Paid | Top paid apps on the iOS App Store |
Google Play | Top apps on Google Play |
Top Websites | Most-visited websites globally by traffic rank |
Spotify Top Podcasts | Top podcasts on Spotify |
Steam Most Played | Top games by concurrent live players |
GitHub Trending Repos | Daily trending repositories across all languages |
IMDb MOVIEmeter | Top 100 most-popular movies by user activity |
Open Library Trending Books | Daily trending books from Open Library |
About this data
Cross-platform trend indices on a unified, normalized scale, produced by Trends MCP's analytics pipeline.
Tools
Three tools. Track any keyword through time, measure its growth across sources, or discover what is trending right now. No keyword needed for live feeds.
amazon, tiktok, youtubeget_trendsPull the full historical time series for any keyword on any source — approximately 5 years of weekly data, normalized to 0-100 for consistent cross-platform comparison.
get_trends(
keyword='electric vehicles',
source='google search',
data_mode='weekly'
)get_growthCompare trend momentum across platforms in one call — pass a comma-separated source list (e.g. google search, tiktok, amazon) to get growth for each.
get_growth(
keyword='electric vehicles',
source='google search, tiktok, youtube',
percent_growth=['3M', '1Y']
)get_top_trendsSee what is trending right now across all platforms simultaneously -- Google Trends, TikTok, Reddit, Wikipedia, Amazon, App Store, Spotify, and more in one call, no keyword required.
get_top_trends(
type='Google Trends',
limit=20
)FAQ