Connect Trends MCP to Zed and query Google Search, YouTube, Reddit, TikTok, npm, and more without leaving your editor. Live trend data inside Zed's AI assistant, on demand.
Zed supports MCP servers through the context_servers key in your settings.json. Add Trends MCP with the following configuration:
{
"context_servers": {
"trends-mcp": {
"source": "custom",
"command": {
"path": "npx",
"args": ["-y", "trendsmcp"]
}
}
}
}
Open Zed settings with cmd+shift+p (Mac) or ctrl+shift+p (Linux/Windows), search for "Open Settings", paste the snippet above, and restart Zed. Trends MCP tools will be available in the Zed AI panel immediately.
Tools for this workflow
get_trendsIn Zed AI, check whether a framework or library is gaining or losing traction before committing to it in a project - returns a 5-year weekly normalized adoption curve.
get_trends(keyword='bun', source='npm', data_mode='weekly')
get_growthCompare npm download growth for multiple packages in a single query - useful for dependency selection, technology due diligence, and library benchmarking.
get_growth(keyword='zod', source='npm, google search', percent_growth=['3M', '12M'])
get_ranked_trendsSurface the fastest-growing npm packages by download count growth - useful for finding emerging libraries and frameworks before they become mainstream choices.
get_ranked_trends(source='npm', sort='yoy_pct_change', limit=30)
get_top_trendsSee what is trending in developer communities on Reddit, Google Trends, or Google News right now - surfaces the technical topics and tools dominating developer discussion today.
get_top_trends(type='Reddit Hot Posts', limit=20)
FAQ