Google Search Console (GSC) MCP
Provides tools for interacting with Google Search Console, enabling AI agents to access search performance data (clicks, impressions, CTR, position), identify striking-distance keywords, manage sitemaps, and inspect URL indexing status.
gsc-mcp
Google Search Console for AI agents: search performance, striking-distance keywords, sitemaps, and URL inspection. SEO automation you can hand to an assistant.
An MCP server for Google Search Console. It gives an AI assistant the data and the levers behind organic search: how queries and pages perform, which keywords are one nudge away from page one, the state of your sitemaps, and whether a specific URL is indexed — plus the ability to submit or remove sitemaps.
Why this exists. Search Console is where SEO actually happens, but its UI is click-heavy and its data is hard to act on at a glance. The single most useful view — queries ranking in striking distance of page one — is not even a built-in report; you have to filter and eyeball it. This server puts that view, and the rest of the funnel, in front of an agent so the boring parts of SEO (find the near-miss keywords, check index status, keep sitemaps healthy) can be automated.
It was built to run SEO for two sites — a podcast and a personal site — but nothing here is specific to them. Point it at any property you have verified.
Tools
Tool | Access | What it returns | API |
| read | Verified properties + permission level |
|
| read | Clicks/impressions/CTR/position by query, page, country, device, or date |
|
| read | Queries at avg position 8–25 with enough impressions — the optimization list | computed from search analytics |
| read | Submitted sitemaps with status, last download, warning/error counts |
|
| write | Submits/pings a sitemap to Google |
|
| write, destructive | Deregisters a sitemap from Search Console |
|
| read | Index status, last crawl, canonical, mobile/rich-results verdicts |
|
Every tool carries MCP read/write annotations, so a client can tell the two write tools apart from the five read-only ones before calling them. Read tools are readOnlyHint: true; gsc_submit_sitemap is a non-destructive write; gsc_delete_sitemap is destructiveHint: true.
List tools default row_limit / limit low (25) to keep responses small — agents pay tokens per response.
Related MCP server: Google Search Console MCP Server
Authentication
This server uses an OAuth installed-app credential (a saved refresh token), not a service account or an API key. It reads the credential from:
~/.config/gws/searchconsole_credentials.jsonThe file is google-auth's Credentials.to_json() shape: it contains client_id, client_secret, refresh_token, and scopes. The server refreshes short-lived access tokens against Google's token endpoint directly with fetch — no heavy googleapis dependency.
To create the file yourself if you do not already have it:
In Google Cloud Console, create an OAuth client of type Desktop app and download its
client_secret.json.Enable the Search Console API on that project.
Run an installed-app OAuth flow requesting the scope you need (see below) and save the resulting credentials to
~/.config/gws/searchconsole_credentials.json. Any standardgoogle-auth-oauthlibinstalled-app snippet works — about ten lines, and it opens a browser for a single consent click.
The path is shared on purpose: if you already hold a Search Console credential in that location for other tooling, this server reuses it rather than asking you to mint a second one.
Scopes: read-only vs. full
Read tools work with
https://www.googleapis.com/auth/webmasters.readonly.Write tools (
gsc_submit_sitemap,gsc_delete_sitemap) and URL inspection need the fullhttps://www.googleapis.com/auth/webmastersscope.
If your saved credential only has the read-only scope, the read tools work and the write tools return a clear "re-mint with the full scope" error rather than a cryptic 403. Re-running the mint with the full scope upgrades the same file in place; read tools keep working throughout.
Set GSC_CREDENTIALS_PATH to point at a different credential file if you do not use the default location.
Starts without a credential
The server boots and answers tools/list even when no credential is present, so MCP inspectors can introspect it. Tool calls then return a setup pointer (to stderr at startup, and as the tool result). stdout is reserved for the MCP transport and stays clean.
Setup
1. Verify your property in Search Console
Add your site at search.google.com/search-console. A Domain property (verified with a DNS TXT record) covers http/https and all subdomains and is the recommended choice. Note the exact property string — gsc_list_sites will show it as sc-domain:example.com (Domain) or https://example.com/ (URL-prefix).
2. Mint the credential
Create ~/.config/gws/searchconsole_credentials.json as described under Authentication, requesting the full webmasters scope if you want the write and URL-inspection tools.
3. Configure your MCP client
Claude Code
Add to your .mcp.json:
{
"mcpServers": {
"gsc": {
"command": "npx",
"args": ["-y", "@conorbronsdon/gsc-mcp"]
}
}
}Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"gsc": {
"command": "npx",
"args": ["-y", "@conorbronsdon/gsc-mcp"]
}
}
}No env block is needed when the credential is at the default path. Set GSC_CREDENTIALS_PATH if it lives elsewhere.
4. Verify
Ask your assistant: "List my Search Console properties," then "Show me striking-distance keywords for it over the last 28 days."
Limitations
Read these so you know what the numbers mean and what this can and cannot do.
No request-indexing tool — by design. Search Console's "Request indexing" button has no public API. Google's Indexing API only supports
JobPostingandBroadcastEventpages, not normal content, and using it for normal pages violates its terms. So there is deliberately no "ask Google to index this page" tool here; for normal pages, requesting indexing is a manual click in the Search Console UI.gsc_submit_sitemapis the supported, API-backed way to nudge crawling.Data lags ~2–3 days. Search Analytics is not real-time. End your date ranges a few days before today or the last days come back empty.
searchAnalyticsis capped per call.row_limitcaps at 1000 here (the API allows 25,000 with pagination); for very large pulls, page withstart_date/dimension filters rather than asking for everything at once.Striking distance is computed client-side. It pulls up to 1000 query rows and filters to the position band. On a site with thousands of ranking queries, the band view reflects the top 1000 by clicks, not the entire long tail.
URL inspection is rate-limited and slow. Google enforces a low daily quota on the URL Inspection API and each call can take a second or two. Inspect specific URLs you care about; do not loop it over a whole sitemap.
No property add/remove tools. Verifying a property is a stateful, error-prone flow (DNS TXT, meta tag, file upload) that does not fit a single tool call. Add and verify properties in the Search Console UI; this server operates on properties you have already verified.
General API quotas apply. The server surfaces a clear error on HTTP 429. Keep
row_limitand inspection volume modest.
Development
git clone https://github.com/conorbronsdon/gsc-mcp.git
cd gsc-mcp
npm install
npm run build
npm testRun locally:
npm startTests mock fetch and make no network calls.
Contributing
Issues and pull requests are welcome. If a Search Console endpoint is worth wrapping as a tool, open an issue describing what it should return and the endpoint it maps to. Keep the contract honest: read tools stay read-only, write tools carry the right annotations, and responses stay compact.
About
Built and maintained by Conor Bronsdon. I host the Chain of Thought podcast, which covers AI infrastructure, developer tools, and how practitioners actually use this stuff. I built this to pull SEO work into the agent workflows that run the show and my site.
Companion tools:
op3-mcp: podcast analytics through OP3 — downloads, geography, apps, per-episode breakdowns.
podcast-benchmark: benchmark your show against peers on public signals.
Transistor-MCP: the Transistor.fm MCP server — episodes, transcripts, download counts.
substack-mcp: read posts and manage drafts on Substack, safe for agent workflows.
ai-tools-for-creators: a curated list of AI skills and MCP servers for people who ship ideas for a living.
More at chainofthought.show and on X.
Disclaimer
This is an independent personal project, not affiliated with, sponsored by, or endorsed by Google LLC. All views expressed are my own.
License
MIT
This server cannot be installed
Maintenance
Related MCP Servers
- Alicense-qualityDmaintenanceEnables interaction with Google Search Console to query search analytics, inspect URL indexing status, and manage sitemaps. It allows users to monitor SEO performance and site health through natural language commands in MCP-compatible clients.Last updated1533MIT
- Alicense-qualityFmaintenanceProvides AI agents with read-only access to Google Search Console data, including search analytics, index coverage, and sitemap status. It enables users to query clicks, impressions, and ranking performance or check URL indexing status through natural language.Last updated563MIT
- AlicenseAqualityFmaintenanceQuery Google Search Console search analytics, inspect URL indexing status, manage sitemaps, and analyze keyword performance. 13 tools covering search queries, page performance, sitemap management, and index coverage.Last updated132994MIT
- Alicense-qualityDmaintenanceEnables querying Google Search Console data including rankings, clicks, and impressions for websites. Provides tools for analyzing search performance, top queries, page metrics, and ranking changes.Last updatedMIT
Related MCP Connectors
SEO research, audits, backlinks, GSC, and content workflow tools for AI agents.
Live SEO workflow tools for Claude Code, Codex, and AI agents.
Professional SEO auditing: 15 tools, 9 checks, CWV, E-E-A-T, schema, GEO. Free tier.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/conorbronsdon/gsc-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server