Google Search Console Mcp
Google Search Console MCP Server for Claude, Cursor, Windsurf and other MCP Clients
- Transport
- Not stated
- Package
- —
- Registry id
- —
No install snippet on purpose. A working MCP config is a command, its arguments and an environment block — the last two are where API keys live, so this catalogue never stores them and cannot publish them. Follow the link above for the authors' own instructions.
Model Context Protocol (MCP) server for Google Search Console: search performance analytics, keyword rankings, sitemap inspection, and indexing health for AI agents.
🌐 Live Documentation & Web Portal: https://gsc.builditwithai.xyz
⚡ Quickstart
# 1-Line Universal Installer (Auto-configures Claude Desktop, Cursor, Claude Code, Antigravity, VS Code, Zed, Windsurf)
curl -fsSL "https://gsc.builditwithai.xyz/install" | bash
# Or run directly via your preferred runtime:
uvx google-search-console-mcp
npx -y @surendranb/google-search-console-mcp
🤖 Client Setup
A. Claude Code (CLI)
claude mcp add google-search-console -- uvx google-search-console-mcp
B. Cursor & Google Antigravity (mcp.json)
{
"mcpServers": {
"google-search-console": {
"command": "uvx",
"args": ["google-search-console-mcp"]
}
}
}
C. Claude Desktop (claude_desktop_config.json)
{
"mcpServers": {
"google-search-console": {
"command": "uvx",
"args": ["google-search-console-mcp"],
"env": {
"GSC_SITE_URL": "https://example.com/",
"GOOGLE_APPLICATION_CREDENTIALS": "/path/to/service_account.json"
}
}
}
}
D. VS Code (Cline / Roo Code / Continue)
{
"mcpServers": {
"google-search-console": {
"command": "npx",
"args": ["-y", "@surendranb/google-search-console-mcp"]
}
}
}
🛠️ Tools & Capabilities
| Tool Name | Parameters | Description | Return Type |
|---|---|---|---|
get_search_analytics |
site_url (string), start_date (string), end_date (string), dimensions (list), row_limit (int) |
Queries organic search clicks, impressions, CTR, and average position grouped by query, page, country, device, and date. | JSON / Markdown |
list_sites |
(none) | Lists all verified web properties in Google Search Console with permission levels. | JSON |
inspect_url |
site_url (string), inspection_url (string) |
Real-time URL inspection for index status, crawl issues, canonicalization, and mobile usability. | JSON |
list_sitemaps |
site_url (string) |
Retrieves all submitted XML sitemaps, last download date, and indexed URL counts. | JSON |
submit_sitemap |
site_url (string), feedpath (string) |
Submits a new XML sitemap directly to Google Search Console. | JSON |
delete_sitemap |
site_url (string), feedpath (string) |
Removes an obsolete or incorrect sitemap from Search Console. | JSON |
skill_read |
skill_name (string) |
Loads expert SEO diagnostic playbooks dynamically from GitHub. | Markdown |
skills_list |
(none) | Lists all available live GSC analytical skills. | JSON |
🔒 Telemetry & Privacy
This package collects anonymous, non-PII diagnostic telemetry (command executions, latency, error codes) to improve tool reliability. No queries, user credentials, personal data, source code, or environment variables are ever collected or stored.
From the project's README.