Trends API
Trend data from Google, TikTok, Amazon, Reddit, YouTube, Steam, npm and more as JSON
Links
README
From the repo.
Remote MCP server
Hosted MCP at https://api.trendsapi.ai/mcp. Same three operations and catalogs as REST. Token: trendsapi.ai/#get-key.
REST contract: trendsapi-ai/trendsapi.
Tools
| MCP tool | REST mode | Required | Returns |
|---|---|---|---|
get_trends | get_time_series | source, keyword | Weekly history |
get_growth | get_growth | source, keyword | Percent change |
get_top_trends | get_top_trends | type | Live ranked feed |
Sources, feeds, and keyword formats: hub keyword sources and live feeds.
app downloads / app rankings still need an Android bundle ID (com.openai.chatgpt).
Cursor
~/.cursor/mcp.json:
{
"mcpServers": {
"trend-feeds": {
"url": "https://api.trendsapi.ai/mcp",
"transport": "http",
"headers": { "Authorization": "Bearer YOUR_TOKEN" }
}
}
}
VS Code
.vscode/mcp.json:
{
"servers": {
"trend-feeds": {
"type": "http",
"url": "https://api.trendsapi.ai/mcp",
"headers": { "Authorization": "Bearer YOUR_TOKEN" }
}
}
}
Claude Desktop
{
"mcpServers": {
"trend-feeds": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://api.trendsapi.ai/mcp", "--header", "Authorization:${AUTH_HEADER}"],
"env": { "AUTH_HEADER": "Bearer YOUR_TOKEN" }
}
}
}
Claude.ai: Settings → Connectors → Add custom connector → https://api.trendsapi.ai/mcp.
No local production server in this repo.
License
MIT. See LICENSE.
Config for your environment
Use the endpoint URL below in your config. No API key — you connect directly.
Tool
OS
Config file: ~/.cursor/mcp.json
{
"mcpServers": {
"mcp-server": {
"url": "https://api.trendsapi.ai/mcp"
}
}
}Paste into mcpServers in the config file. Restart Cursor after saving.
If this MCP is also published on mcpchannel.ai, you can subscribe from Browse and use the gateway config there instead.