mcp-server-gsc
Provides tools for querying Google Search Console search analytics (clicks, impressions, CTR, position), inspecting URL indexing status, and managing sitemaps.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-server-gscshow me search analytics for example.com over the last 30 days"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Google Search Console MCP Server — Search Analytics, URL Indexing & Sitemap Management for AI Assistants (SEO / LLMO)
mcp-server-gsc is an MCP (Model Context Protocol) server for Google Search Console that connects your search performance data to Claude or any MCP client. It lets AI assistants query search analytics (clicks, impressions, CTR, position), inspect URL indexing and crawl status, and manage sitemaps — so you can analyze and optimize your website's SEO and LLMO directly from a conversation.
Tools
Tool | What It Does | What You Need to Provide |
| Lists all tools and shows auth status — call this first if unsure | Nothing |
| Shows all your GSC properties | Nothing |
| Details about a specific site | Site URL |
| Top queries and pages with clicks, impressions, CTR, position | Site URL, time period |
| Summary of site performance (totals, daily trend, top 5) | Site URL, time period |
| Compare performance between two time periods | Site URL, two date ranges |
| Search terms driving traffic to a specific page | Site URL, page URL |
| Analytics with filters by country, device, query, page | Site URL |
| Detailed crawl/index status for a URL | Site URL, page URL |
| Inspect up to 10 URLs at once | Site URL, list of URLs |
| Check multiple URLs (up to 20) for indexing problems | Site URL, list of URLs |
| Lists all sitemaps for a site | Site URL |
| Detailed sitemap info including errors and warnings | Site URL |
| Submit, delete, or get status of a sitemap | Site URL, action |
| Re-run the OAuth browser login (switch accounts) | Nothing |
Related MCP server: Google Search Console MCP Server
Setup
1. Build
npm install
npm run build2. Google Cloud credentials
You need a Google Cloud project with the Search Console API enabled (console.cloud.google.com → APIs & Services → Library → "Google Search Console API" → Enable).
Then pick one of the two auth methods:
Option A — OAuth (recommended: sign in with your own Google account)
APIs & Services → Credentials → Create Credentials → OAuth client ID → Application type Desktop app.
If prompted, configure the OAuth consent screen first (External is fine; add your own Google account as a test user).
Download the client JSON, or copy the client ID and secret.
Configure via environment variables — either:
GSC_OAUTH_CLIENT_ID=xxxx.apps.googleusercontent.com
GSC_OAUTH_CLIENT_SECRET=GOCSPX-...or point to the downloaded JSON:
GSC_OAUTH_CREDENTIALS=/path/to/client_secret_xxxx.jsonOn the first tool call (or via the reauthenticate tool) a browser window opens for Google sign-in. Tokens are stored in ~/.config/mcp-server-gsc/tokens.json and refreshed automatically.
Option B — Service account (headless, no browser)
APIs & Services → Credentials → Create Credentials → Service account, then create a JSON key.
In Search Console → Settings → Users and permissions, add the service account email as a user on each property.
GOOGLE_APPLICATION_CREDENTIALS=/path/to/service-account.jsonIf GOOGLE_APPLICATION_CREDENTIALS is set, it takes precedence and no browser login is used.
3. Register with your MCP client
Claude Code:
claude mcp add gsc \
-e GSC_OAUTH_CLIENT_ID=xxxx.apps.googleusercontent.com \
-e GSC_OAUTH_CLIENT_SECRET=GOCSPX-... \
-- node /path/to/mcp-server-gsc/dist/index.jsClaude Desktop (claude_desktop_config.json):
{
"mcpServers": {
"gsc": {
"command": "node",
"args": ["/path/to/mcp-server-gsc/dist/index.js"],
"env": {
"GSC_OAUTH_CLIENT_ID": "xxxx.apps.googleusercontent.com",
"GSC_OAUTH_CLIENT_SECRET": "GOCSPX-..."
}
}
}
}Recommended companion tools for SEO / LLMO
This server is best used for SEO / LLMO in combination with:
KeywordGraph MCP server — lets you compare your Search Console data against real-time search intent data, perform topical cluster analysis, and build knowledge graphs of your queries and content. Connect directly via
https://mcp.keywordgraph.com, e.g.:claude mcp add --transport http keywordgraph https://mcp.keywordgraph.comSEO skill — adds advanced SEO / LLMO analysis workflows on top of both servers.
Together they enable the full loop: pull your actual performance data from this server, contrast it with what people are searching for right now, find the topical gaps, and optimize your content accordingly — for best results use all three together.
Usage notes
Site URL format matters: domain properties are
sc-domain:example.com; URL-prefix properties arehttps://example.com/(exactly as shown in Search Console). Uselist_propertiesto see yours.Data lag: Search Console analytics data lags by roughly 2 days. When you use the
daysshortcut instead of explicit dates, the window automatically ends 2 days ago.Time periods: analytics tools accept either explicit
startDate/endDate(YYYY-MM-DD) or a trailingdayscount (default 28).Switching accounts: call the
reauthenticatetool — it discards stored tokens and reopens the browser login.Token storage location can be overridden with
GSC_CONFIG_DIR.
Development
npm run watch # recompile on changeSource layout:
src/index.ts— MCP server and tool definitionssrc/auth.ts— OAuth loopback flow, token persistence, service-account supportsrc/gsc.ts— Search Console API helpers (queries, totals, URL-inspection diagnosis)
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityDmaintenanceProvides read-only access to Google Search Console data, allowing AI assistants to query site performance metrics like keywords, clicks, and rankings using natural language. It supports listing verified properties, querying search analytics with dimension filters, and retrieving sitemap information.31MIT
- AlicenseNot gradedqualityFmaintenanceProvides 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.744MIT
- AlicenseNot gradedqualityDmaintenanceConnects AI assistants to Google Search Console data for SEO analysis, including search analytics, URL inspection, sitemaps, indexing, and opportunity detection.MIT
- AlicenseAqualityCmaintenanceConnects Google Search Console to AI assistants, enabling natural language queries for SEO data, indexing audits, sitemap management, and full site audits.20MIT
Related MCP Connectors
Turn Search Console data into SEO actions, content, publishing, indexing, and AI insights.
SEO research, audits, backlinks, GSC, and content workflow tools for AI agents.
Open-source SEO manager for coding agents: keyword research, content PRs, rank + Search Console.
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/noduslabs/mcp-server-gsc'
If you have feedback or need assistance with the MCP directory API, please join our Discord server