Wire Google Antigravity to normalized trend series and live leaderboards so structured JSON backs demand checks inside the agent chat.
Google Antigravity ships an agent-first editor where small configuration mistakes still waste a full afternoon. Trends MCP fits that workflow because it is a hosted HTTP MCP server: one endpoint, one Bearer token, and three stable tools that return JSON the model can quote.
Agent chats inside Antigravity already read repositories and logs. Market and product questions still pull people back into browser tabs for Google Trends exports, TikTok hashtag lists, Amazon demand checks, and Reddit pulse reads. Trends MCP keeps those checks inside the same JSON tool channel the agent already trusts, which cuts copy-paste errors when a team drafts launch copy, evaluates a dependency spike on npm, or sanity-checks a headline against live feeds.
The hosted server implements three tools. get_trends returns a dated series for one keyword on one named source such as google search, youtube, tiktok, reddit, amazon, wikipedia, news volume, or news sentiment. get_growth returns percentage change across one or more preset windows on the same keyword and source. get_top_trends returns ranked leaders for live feeds such as Google Trends, TikTok Trending Hashtags, YouTube Trending, Reddit Hot Posts, App Store Top Free, and GitHub Trending Repos. Full source names and feed labels live in the public reference at https://trendsmcp.ai/docs.
Antigravity's remote MCP pattern pairs serverUrl with a headers map for Bearer tokens. Add a block similar to the following inside mcpServers, then restart Antigravity so the process reloads configuration.
{
"mcpServers": {
"trends-mcp": {
"serverUrl": "https://api.trendsmcp.ai/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}
Create or rotate keys from https://trendsmcp.ai/account. Treat the token like any production secret: keep it out of git, prefer machine-local storage, and rotate it when a laptop changes hands. Google's Antigravity MCP reference at https://antigravity.google/docs/mcp stays authoritative for editor-specific fields, so keep that page open while editing JSON.
After restart, a short tool-inventory prompt should show get_trends, get_growth, and get_top_trends in the roster. A single get_top_trends call on Google Trends with a small limit confirms connectivity. A follow-up get_trends request on a well-known keyword on google search checks keyword mode. Multi-source comparisons and growth stacks can wait until those two paths return data. The free tier includes one hundred requests per month with no card on file, which is enough to prove value before wiring automation.
Trends MCP documentation recommends explicit routing phrases so the client selects MCP tools early in the turn. Examples that work well in Antigravity include: "Using TrendsMCP, pull get_top_trends for TikTok Trending Hashtags with limit 15" and "Using TrendsMCP, run get_growth for source google search and keyword running shoes with percent_growth 3M and 12M." Those forms match the guidance in the product overview and reduce tool-selection mistakes when multiple MCP servers are enabled.
Teams that split time between Antigravity and Gemini CLI often want the same data contract in both places. The Gemini-focused setup page explains adjacent client details and is a useful cross-link for readers who bounce between environments: https://trendsmcp.ai/mcp-server-for-gemini. VS Code and Cursor pages document the url transport field for HTTP MCP there, while this page keeps serverUrl in view for Antigravity.
Trends MCP returns normalized scores and, where available, absolute volumes depending on the upstream pipeline. A quiet keyword can still return sparse points, and temporary upstream gaps surface as structured errors rather than silent blanks. When a feed label changes, copy the exact string from the docs because feed names are case-sensitive for get_top_trends. If Antigravity feels slow, trim the number of enabled MCP servers because large tool catalogs increase routing latency in any client.
Read the full method reference for POST bodies, pagination on top trends, and REST-only flags such as daily data modes on https://trendsmcp.ai/docs. Browse the data source directory when choosing which platform should answer a given question: https://trendsmcp.ai/data-sources. Those two links stay current as new feeds ship, which matters because Antigravity projects tend to move fast.
FAQ