google_trending_searches
Pack: google-trends · Endpoint: https://gateway.pipeworx.io/google-trends/mcp
What is trending on Google today/right now? Returns the current daily trending Google search terms for a country, each with Google’s approximate traffic floor (for example “1000+”) and related news articles. Keyless. This is the live trending-search snapshot, not historical interest-over-time data.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
country | string | no | ISO 3166-1 two-letter country code (default US), e.g. US, GB, CA, IN, AU. |
limit | number | no | Number of trends to return, 1-25 (default 10). |
news_per_trend | number | no | Related news articles per trend, 0-3 (default 2). |
Example call
Arguments
{
"country": "US",
"limit": 10
}
curl
curl -X POST https://gateway.pipeworx.io/google-trends/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"google_trending_searches","arguments":{"country":"US","limit":10}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('google_trending_searches', {
"country": "US",
"limit": 10
});
More examples
{
"country": "GB",
"limit": 5,
"news_per_trend": 1
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"google-trends": {
"url": "https://gateway.pipeworx.io/google-trends/mcp"
}
}
}
See Getting Started for client-specific install steps.