gsc_search_analytics

Pack: google_search_console · Endpoint: https://gateway.pipeworx.io/google_search_console/mcp

Query Search Console search-performance data: clicks, impressions, CTR, and average position, grouped by dimensions. Use for “top queries/pages last month”, organic CTR, ranking trends. siteUrl must be exactly as returned by gsc_list_sites.

Parameters

NameTypeRequiredDescription
siteUrlstringyesThe property URL exactly as listed by gsc_list_sites (e.g. “https://example.com/” or “sc-domain:example.com”)
startDatestringyesStart date, YYYY-MM-DD (inclusive). Search Console data lags ~2-3 days.
endDatestringyesEnd date, YYYY-MM-DD (inclusive)
dimensionsarraynoGroup results by these dimensions (e.g. [“query”] for top queries, [“page”] for top pages, [“date”] for a time series). Default: none (totals).
itemsstringno
rowLimitnumbernoMax rows (default 25, max 25000)
searchTypestringnoSearch type / data state (default web)
dimensionFilterGroupsarraynoOptional Search Console dimensionFilterGroups objects to filter rows (e.g. filter query contains “shoes”). Advanced; pass-through to the API.
itemsobjectno

Example call

Arguments

{
  "siteUrl": "https://example.com/",
  "startDate": "2024-11-01",
  "endDate": "2024-11-30",
  "dimensions": [
    "query"
  ]
}

curl

curl -X POST https://gateway.pipeworx.io/google_search_console/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"gsc_search_analytics","arguments":{"siteUrl":"https://example.com/","startDate":"2024-11-01","endDate":"2024-11-30","dimensions":["query"]}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('gsc_search_analytics', {
  "siteUrl": "https://example.com/",
  "startDate": "2024-11-01",
  "endDate": "2024-11-30",
  "dimensions": [
    "query"
  ]
});

More examples

{
  "siteUrl": "sc-domain:example.com",
  "startDate": "2024-10-01",
  "endDate": "2024-11-30",
  "dimensions": [
    "page",
    "date"
  ],
  "rowLimit": 100,
  "searchType": "web"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "google_search_console": {
      "url": "https://gateway.pipeworx.io/google_search_console/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 31, 2026