Trends MCP for Claude

Give Claude live trend data across Google, TikTok, YouTube, Reddit, Amazon, and 10 more sources. Works with Claude.ai, Claude Desktop, and Claude Code. One connector or one config snippet and every conversation gets real-time trend data.

Live data as of 2026-08-05 · Updated 2026-08-05

Trends MCP connects Claude to live trend data from 15+ sources: Google Search, Google Shopping, TikTok, Reddit, YouTube, Amazon, Wikipedia, news sentiment and volume, web traffic, app downloads, Steam, npm, and PyPI. After a one-time setup, any Claude conversation can ask questions like "what is accelerating on TikTok this week?" or "compare Amazon and Google Shopping demand for this product" and get answers built on current data instead of training-cutoff guesses.

Why Claude needs a live data connection

Claude's training data has a cutoff, and the cutoff is exactly where trend questions begin. Search interest in Claude AI itself shows why this matters: Trends MCP data pulled on August 5, 2026 puts Google Search interest in Claude AI up 500% year over year, from a normalized 12 to 72, even after cooling 15.29% from a July peak of 85. The ecosystem around Claude is moving just as fast. The official mcp Python package reached 88.8 million weekly PyPI downloads, up 1654.39% year over year from 5.1 million and still up 26.1% in the last 30 days. The npm SDK @modelcontextprotocol/sdk sits at 23.0 million weekly downloads, up 332.67% year over year from 5.3 million.

A user base growing that fast asks questions about a world that changes weekly. Without a live data connection, Claude answers trend questions from memory. With Trends MCP connected, Claude answers from this week's data and can cite the exact dates and figures behind every claim.

Setup on Claude.ai (browser)

The browser path takes under a minute and needs no config file:

  1. Open Claude.ai Settings, then Connectors.
  2. Choose Add custom connector and paste the Trends MCP server URL from the dashboard.
  3. Complete the OAuth prompt in the browser.
  4. Start a new chat and ask a trend question.

Claude.ai Pro, Max, and Team plans support remote MCP connectors. No API key handling is required on this path because authentication runs through OAuth.

Setup on Claude Desktop

The desktop path uses the standard MCP config file:

  1. Copy the API key from the Trends MCP dashboard.
  2. Open claude_desktop_config.json (Mac: ~/Library/Application Support/Claude/claude_desktop_config.json, Windows: %APPDATA%\Claude\claude_desktop_config.json).
  3. Add the Trends MCP server under mcpServers with the server URL and the key in the headers.
  4. Fully quit and restart Claude Desktop.

After restart, the Trends MCP tools appear in the tools list and Claude calls them automatically when a question needs trend data.

Setup on Claude Code

Claude Code supports MCP servers in its own configuration. Register the same remote server URL and API key, and the tools become available inside coding sessions. This is the path developers use when trend data feeds into programmatic work, for example the pipeline patterns in how to build a trends dashboard.

What to ask once connected

Time series analysis: "Chart Google Search interest in ai agents over the last year and explain the shape." Claude calls get_time_series(keyword='ai agents', source='google search') and narrates the result.

Cross-platform growth: "Compare mushroom coffee demand across Amazon, Google Shopping, TikTok, and Google Search over 1, 3, and 12 months." One get_growth call with a comma-separated source list returns all four platforms; the e-commerce research page shows what that workflow looks like for product teams.

Live boards: "What is trending on TikTok and Reddit right now?" Claude pulls get_top_trends for each of the 21 available feed types requested and summarizes what is breaking today.

The free tier includes 100 requests per month, enough for weekly research sessions. Paid plans start at $19/month for 1,000 requests, with Pro at $49/month for 5,000 requests. For a feature comparison against browser-based trend tools, see Trends MCP vs Glimpse.

get_time_series

Ask Claude to chart Google Search or TikTok trend history for any topic. Claude reads the time series and writes a narrative analysis of what the data means.

get_time_series(keyword='ai agents', source='google search')

get_growth

Ask Claude to run cross-platform growth analysis in one message: compare ai agents growth across Google, TikTok, Reddit, and YouTube over 3 months and 1 year.

get_growth(keyword='ai agents', source='google search, tiktok, reddit, youtube', percent_growth=['3M', '12M'])

get_top_trends

Ask Claude what is trending right now across platforms at once. Claude pulls the live boards and summarizes what is breaking on TikTok, Google, Reddit, and Wikipedia today.

get_top_trends(type='TikTok Trending Hashtags', limit=20)

Common questions

Yes. Claude.ai Pro, Max, and Team plans support remote MCP connectors. Go to Settings, then Connectors, then Add custom connector, and paste the Trends MCP URL. Authentication happens through OAuth in the browser, so no API key or JSON file is needed for this path.
Yes. Add the server entry to claude_desktop_config.json under mcpServers, with the API key from the Trends MCP dashboard in the headers. On Mac the file lives at ~/Library/Application Support/Claude/claude_desktop_config.json; on Windows at %APPDATA%\Claude\claude_desktop_config.json. Fully quit and restart Claude Desktop after saving.
Yes. Claude Code supports MCP servers. Register the same remote server URL and API key in the Claude Code MCP configuration and all Trends MCP tools become available inside coding sessions.
All 15+ sources: Google Search, Google Shopping, YouTube, TikTok, Reddit, Amazon, Wikipedia, news sentiment, news volume, web traffic, app downloads, Steam, npm, and PyPI. Use get_time_series, get_growth, or get_top_trends to query any of them.
No. Trends MCP handles all source connectivity behind one key. Connect once and Claude can query every platform immediately.