Read-only Google Search Console MCP for AI SEO analysis: search analytics, URL inspection, sitemaps.
- ✓Open-source license (MIT)
- ✓Actively maintained (<30d)
- ✓Clear description
- ✓Topics declared
- ✓Documented (README)
claude mcp add google-search-console-mcp -- npx -y @sarahpark/google-search-console-mcp{
"mcpServers": {
"google-search-console-mcp": {
"command": "npx",
"args": ["-y", "@sarahpark/google-search-console-mcp"]
}
}
}Resumen de MCP Servers
# Google Search Console MCP Server
A minimal MCP server for Google Search Console.
Give Codex, Claude Code, or Claude Desktop read-only access to your search analytics, URL indexing information, and sitemap status. Runs locally; cannot change your site or Search Console settings.
Once connected, ask your agent:
- "Which queries had the most impressions but few clicks over the last 28 days?"
- "Compare mobile vs desktop search performance this month."
- "Check the indexing status of https://example.com/blog/my-post."
[Setup](#setup) · [Tools](#tools) · [Limitations](#limitations) · [Troubleshooting](#troubleshooting)
## Setup
You need Node.js and npm, an MCP client, and access to a Search Console property. To sign in as yourself, also install the [Google Cloud CLI](https://cloud.google.com/sdk/docs/install). Server startup and tool discovery were checked with Node.js 22.
### 1. Enable the Google API
Create or select a project in [Google Cloud Console](https://console.cloud.google.com/), then [enable the Search Console API](https://console.cloud.google.com/marketplace/product/google/searchconsole.googleapis.com). Note the project ID for the next step.
### 2. Authenticate
**Recommended for new users: sign in as yourself.** Application Default Credentials (ADC) use your existing Search Console permissions, so you don't need to add another user to your properties.
Run both commands, replacing `YOUR_PROJECT_ID` with the project you enabled above:
```bash
gcloud auth application-default login \
--scopes=https://www.googleapis.com/auth/webmasters.readonly,https://www.googleapis.com/auth/cloud-platform
gcloud auth application-default set-quota-project YOUR_PROJECT_ID
```
The quota project is required. For permission or scope errors, see [troubleshooting](#troubleshooting).
<details>
<summary>Alternative: use a service account key</summary>
1. In Google Cloud Console, go to **APIs & Services → Credentials → Create Credentials → Service account**. Name it and finish creation; you can skip the optional role/access steps.
2. Open the service account, then **Keys → Add Key → Create new key → JSON** to download a key.
3. In [Search Console](https://search.google.com/search-console), open each property's **Settings → Users and permissions → Add user**. Add the service account email with **Restricted** access.
> [!CAUTION]
> Store the key outside your repo and never commit it. Use its absolute path in your client's configuration below.
If Search Console rejects the email with "Failed to add user: email not found," sign in as yourself instead; see [troubleshooting](#troubleshooting).
The server checks `GOOGLE_APPLICATION_CREDENTIALS` before local ADC. If switching to ADC, remove an old key-path setting from your client configuration and environment.
</details>
### 3. Install the server
The `npx` commands in the next step download and run version **1.1.0** for you. Both authentication methods work with the npm package; no clone or build is required.
<details>
<summary>Optional: build from source</summary>
```bash
git clone https://github.com/sarahpark/google-search-console-mcp.git
cd google-search-console-mcp
npm install
npm run build
```
In the client commands below, replace `npx -y @sarahpark/google-search-console-mcp@1.1.0` with `node "/absolute/path/to/google-search-console-mcp/build/index.js"`. In Claude Desktop, set `command` to `node` and `args` to an array containing that absolute path. Run `npm test` for offline authentication checks.
</details>
<details>
<summary>Let Codex or Claude Code handle installation and configuration</summary>
After completing authentication, paste this into your agent:
> Add `npx -y @sarahpark/google-search-console-mcp@1.1.0` as `gsc` in this client's user-level MCP config, preserving existing servers. Use my local Application Default Credentials. Tell me when setup is complete and whether I need to restart the client.
For a service account, replace "Use my local Application Default Credentials" with "Set `GOOGLE_APPLICATION_CREDENTIALS` to `/path/to/service-account-key.json`" and use your actual file location.
Once configured, skip to step 5.
</details>
### 4. Connect your client
Choose your client and run the command for your authentication method. Replace placeholder paths with your actual absolute paths; keep quotes around paths containing spaces. Preserve any existing server entries.
<details>
<summary>Codex</summary>
**Sign in as yourself (ADC):**
```bash
codex mcp add gsc -- npx -y @sarahpark/google-search-console-mcp@1.1.0
```
**npm package with a service account:**
```bash
codex mcp add gsc \
--env "GOOGLE_APPLICATION_CREDENTIALS=/absolute/path/to/service-account-key.json" \
-- npx -y @sarahpark/google-search-console-mcp@1.1.0
```
For manual configuration in `~/.codex/config.toml`, see the [Codex MCP documentation](https://developers.openai.com/codex/mcp).
</details>
<details>
<summary>Claude Code</summary>
**Sign in as yourself (ADC):**
```bash
claude mcp add gsc --scope user -- npx -y @sarahpark/google-search-console-mcp@1.1.0
```
**npm package with a service account:**
```bash
claude mcp add gsc --scope user \
--env "GOOGLE_APPLICATION_CREDENTIALS=/absolute/path/to/service-account-key.json" \
-- npx -y @sarahpark/google-search-console-mcp@1.1.0
```
`--scope user` makes the server available across your projects. Use `--scope project` to share configuration through the project's `.mcp.json` instead.
</details>
<details>
<summary>Claude Desktop</summary>
Add the appropriate entry to `claude_desktop_config.json`, merging it into any existing `mcpServers` object.
**Sign in as yourself (ADC):**
```json
{
"mcpServers": {
"gsc": {
"command": "npx",
"args": ["-y", "@sarahpark/google-search-console-mcp@1.1.0"]
}
}
}
```
**npm package with a service account:**
```json
{
"mcpServers": {
"gsc": {
"command": "npx",
"args": ["-y", "@sarahpark/google-search-console-mcp@1.1.0"],
"env": {
"GOOGLE_APPLICATION_CREDENTIALS": "/absolute/path/to/service-account-key.json"
}
}
}
}
```
</details>
### 5. Verify the connection
Restart your client or start a new session, then ask:
> Use the gsc MCP server to list my Search Console properties.
A successful `list_sites` call verifies both the connection and Google access. Use the exact property URL it returns in later requests, such as `sc-domain:example.com` or `https://example.com/`.
## Tools
<details>
<summary>List your properties — <code>list_sites</code></summary>
List all sites (properties) you have access to in Google Search Console.
No parameters required.
</details>
<details>
<summary>Query search performance — <code>search_analytics</code></summary>
Query search analytics data — clicks, impressions, CTR, and position.
| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `siteUrl` | string | Yes | Site URL as it appears in Search Console (e.g. `https://example.com/` or `sc-domain:example.com`) |
| `startDate` | string | Yes | Start date in `YYYY-MM-DD` format |
| `endDate` | string | Yes | End date in `YYYY-MM-DD` format |
| `dimensions` | string | No | Comma-separated: `query`, `page`, `country`, `device`, `searchAppearance`, `date` |
| `rowLimit` | number | No | Max rows to return (default 100, max 25000) |
| `searchType` | string | No | `web`, `image`, `video`, `news`, `discover`, or `googleNews` (default `web`) |
| `queryFilter` | string | No | Filter by query. Prefix with `regex:` for regex matching |
| `pageFilter` | string | No | Filter by page URL. Prefix with `regex:` for regex matching |
| `countryFilter` | string | No | ISO 3166-1 alpha-3 country code (e.g. `USA`, `GBR`) |
| `deviceFilter` | string | No | `DESKTOP`, `MOBILE`, or `TABLET` |
</details>
<details>
<summary>Inspect a URL — <code>inspect_url</code></summary>
Check indexing status, crawl info, and mobile usability for a URL.
| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `siteUrl` | string | Yes | Site URL as it appears in Search Console |
| `inspectionUrl` | string | Yes | The full URL to inspect (must belong to the site) |
</details>
<details>
<summary>Check sitemap status — <code>list_sitemaps</code></summary>
List all submitted sitemaps and their status for a site.
| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `siteUrl` | string | Yes | Site URL as it appears in Search Console |
</details>
## Limitations
- Search analytics returns at most 25,000 rows per call, without pagination. Results may omit pages or queries, and recent data may be incomplete.
- URL inspection checks one URL at a time; it does not export a site's full indexing coverage report.
- Your agent performs comparisons and opportunity analysis using the returned data. This is a local STDIO server, not a hosted ChatGPT web integration.
## License
[MIT](LICENSE)
## Troubleshooting
<details>
<summary>403 error: missing quota project or permission</summary>
If the error says the API "requires a quota project," rerun:
```bash
gcloud auth application-default set-quota-project YOUR_PROJECT_ID
```
Your account needs `serviceusage.services.use` on that project. If permission is denied, ask a project administrator to grant it or use a project where you have it, with the Search Console API enabled.
Login attempts to attach your configured project automatically but can skip it when you lack permission. Setting it explicitly makes that failure visible. The `cloud-platform` scope in the setup command allows the quota project to be attached.
</details>
<details>
<summary>gcloud won't grant the Search Console scope</summary>
The built-in gcloud client was confirmed to grant `webmasters.readonly` with Google Cloud SDK 557.0.0. If it doesn't work in your version, follow the [gcloud guidance for additional scopes](https://cloud.google.cLo que la gente pregunta sobre google-search-console-mcp
¿Qué es sarahpark/google-search-console-mcp?
+
sarahpark/google-search-console-mcp es mcp servers para el ecosistema de Claude AI. Read-only Google Search Console MCP for AI SEO analysis: search analytics, URL inspection, sitemaps. Tiene 8 estrellas en GitHub y su última actualización registrada es del 2026-09-19.
¿Cómo se instala google-search-console-mcp?
+
Puedes instalar google-search-console-mcp clonando el repositorio (https://github.com/sarahpark/google-search-console-mcp) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.
¿Es seguro usar sarahpark/google-search-console-mcp?
+
Nuestro agente de seguridad ha analizado sarahpark/google-search-console-mcp y le ha asignado un Trust Score de 95/100 (tier: Verified). Revisa el desglose completo de comprobaciones superadas y flags en esta página.
¿Quién mantiene sarahpark/google-search-console-mcp?
+
sarahpark/google-search-console-mcp es mantenido por sarahpark. La última actividad registrada en GitHub es del 2026-09-19, con 2 issues abiertos.
¿Hay alternativas a google-search-console-mcp?
+
Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.
Despliega google-search-console-mcp en tu cloud
Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.
¿Mantienes este repo? Añade un badge a tu README
Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.
[](https://claudewave.com/repo/sarahpark-google-search-console-mcp)<a href="https://claudewave.com/repo/sarahpark-google-search-console-mcp"><img src="https://claudewave.com/api/badge/sarahpark-google-search-console-mcp" alt="Featured on ClaudeWave: sarahpark/google-search-console-mcp" width="320" height="64" /></a>Más MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl! Don't be shy, join here: https://discord.gg/EMgGbDceNQ
The fastest path to AI-powered full stack observability, even for lean teams.