mcp-search-console
Query Google Search Console data including search analytics, indexing status, sitemaps, and URL inspection across multiple accounts.
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-search-consoleShow top queries for my-site last month"
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.
mcp-search-console
Multi-account Google Search Console MCP server. Connect any number of GSC accounts to Claude, Cursor, Codex, or any MCP-compatible AI assistant — and query them by name in the same session.
# Install: uvx mcp-search-console-multi
# Ask your AI:
"Show me the top queries for my-site last month"
"Compare client-acme's performance between Q1 and Q2"
"Check indexing issues on client-beta's 5 product pages"Why this one?
Most GSC MCP servers support one account per server process. This one lets you configure multiple accounts (your own sites + client sites) and switch between them per tool call — no restart needed.
Feature | This server | Others |
Multiple accounts | Yes — named, switchable | No — one per process |
OAuth + service account | Both, mixed per account | Usually one type |
Auto token refresh | Yes | Sometimes |
Rate limit retry | Yes — exponential backoff | No |
Destructive op guard | Yes — env flag required | Sometimes |
SSE transport (remote) | Yes | Varies |
Related MCP server: gsc-mcp-connector
Quickstart (uvx — no clone needed)
1. Create your accounts config:
mkdir -p ~/.config/mcp-search-console
cp accounts.example.json ~/.config/mcp-search-console/accounts.json
# Edit it — add your accounts2. Add to your MCP client config:
{
"mcpServers": {
"search-console": {
"command": "uvx",
"args": ["mcp-search-console-multi"],
"env": {
"GSC_ACCOUNTS_CONFIG": "/Users/you/.config/mcp-search-console/accounts.json"
}
}
}
}3. Restart your AI client. Done.
Accounts config
Copy accounts.example.json and edit it:
{
"default": "my-site",
"accounts": {
"my-site": {
"type": "oauth",
"client_secrets_file": "~/.config/mcp-search-console/client_secrets.json",
"token_file": "~/.config/mcp-search-console/my-site.token"
},
"client-acme": {
"type": "service_account",
"credentials_file": "~/.config/mcp-search-console/acme.json"
}
}
}Set GSC_ACCOUNTS_CONFIG to its path, or put it at ~/.config/mcp-search-console/accounts.json (default).
OAuth setup
Google Cloud Console → create project
Enable the Search Console API
Credentials → Create → OAuth client ID → Desktop app
Download as
client_secrets.jsonOn first use, a browser window opens for you to authorise — token is saved automatically
Service account setup
Google Cloud Console → Credentials → Create → Service Account
Keys tab → Add Key → JSON → download
In GSC, add the service account email as a user on each property
Using multiple accounts
Every tool accepts an optional account parameter. Omit it to use your default.
"Show top queries for my-site" # uses default
"Show top queries for client-acme" # uses named account
"Compare client-beta performance Jan vs Feb" # named accountOr set the default mid-session:
"Switch to client-acme as my default account"Available tools
Account management
Tool | What it does |
| Show all configured accounts and which is default |
| Change the default account |
| Re-run OAuth flow or reload credentials for an account |
Properties
Tool | What it does |
| List all GSC properties |
| Verification + permission details for a property |
Search analytics
Tool | What it does |
| Queries, pages, clicks, impressions, CTR, position |
| Site-level totals for a period |
| Side-by-side comparison of two date ranges |
| Analytics with dimension filters (country, device, etc.) |
| Queries driving traffic to a specific page |
URL inspection
Tool | What it does |
| Indexing status, crawl date, mobile usability, rich results |
| Inspect up to 10 URLs at once |
| Prioritised issue summary across multiple URLs |
Sitemaps
Tool | What it does |
| All submitted sitemaps with status |
| Details for a specific sitemap |
| Submit a new sitemap (requires |
| Remove a sitemap (requires |
Environment variables
Variable | Default | Description |
|
| Path to your accounts config |
| unset | Set to |
|
| Set to |
|
| SSE bind host (use |
|
| SSE bind port |
Remote deployment (Docker / VPS)
docker build -t mcp-search-console .
docker run \
-e MCP_TRANSPORT=sse \
-e MCP_HOST=0.0.0.0 \
-e MCP_PORT=3001 \
-e GSC_ACCOUNTS_CONFIG=/config/accounts.json \
-v /path/to/config:/config \
-p 3001:3001 \
mcp-search-consoleYour MCP client connects to http://your-server:3001/sse.
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
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/apexradius/mcp-search-console'
If you have feedback or need assistance with the MCP directory API, please join our Discord server