google_trending_searches

Pack: google-trends · Connect: https://pipeworx.io/mcp (see Connect below for a single-pack URL)

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/google_trending_searches for the schema, then POST the same URL with its arguments for the data.

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

NameTypeRequiredDescription
countrystringnoISO 3166-1 two-letter country code (default US), e.g. US, GB, CA, IN, AU.
limitnumbernoNumber of trends to return, 1-25 (default 10).
news_per_trendnumbernoRelated 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 — every tool in the catalog, including this one — or use one-click install buttons:

{
  "mcpServers": {
    "pipeworx": {
      "url": "https://pipeworx.io/mcp"
    }
  }
}
Connect to just the google-trends pack
{
  "mcpServers": {
    "google-trends": {
      "url": "https://gateway.pipeworx.io/google-trends/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 26, 2026