Google Search Console

live SaaS

Google Search Console MCP Pack

4 tools
0ms auth
free tier 50 calls/day

Tools

gsc_list_sites

List the sites (properties) in the connected Search Console account, with the permission level for each. Call this first to get the exact siteUrl other tools need (e.g. "https://example.com/" or "sc-d

No parameters required.

Try it
gsc_search_analytics

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 b

No parameters required.

Try it
gsc_list_sitemaps

List the sitemaps submitted for a property, including last download time, warnings/errors, and indexed counts. Use to audit sitemap health.

No parameters required.

Try it
gsc_inspect_url

Inspect a specific URL's index status in Google: coverage state, last crawl, canonical, mobile usability, and rich-results status. Use to debug why a page is or isn't indexed.

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/google_search_console/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/google_search_console/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"gsc_list_sites","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("gsc_list_sites", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("google search console mcp pack");