Skip to main content
ClaudeWave
sarahpark avatar
sarahpark

google-search-console-mcp

View on GitHub

Read-only Google Search Console MCP for AI SEO analysis: search analytics, URL inspection, sitemaps.

MCP ServersOfficial Registry8 stars2 forksTypeScriptMITUpdated today
ClaudeWave Trust Score
95/100
Verified
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
  • Topics declared
  • Documented (README)
Last scanned: 9/20/2026
Install in Claude Code / Claude Desktop
Method: NPX · @sarahpark/google-search-console-mcp
Claude Code CLI
claude mcp add google-search-console-mcp -- npx -y @sarahpark/google-search-console-mcp
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "google-search-console-mcp": {
      "command": "npx",
      "args": ["-y", "@sarahpark/google-search-console-mcp"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Use cases

MCP Servers overview

# 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.c
claudecodexgoogle-search-consolemcpmcp-serversearch-analyticsseo

What people ask about google-search-console-mcp

What is sarahpark/google-search-console-mcp?

+

sarahpark/google-search-console-mcp is mcp servers for the Claude AI ecosystem. Read-only Google Search Console MCP for AI SEO analysis: search analytics, URL inspection, sitemaps. It has 8 GitHub stars and its last recorded update is dated 2026-09-19.

How do I install google-search-console-mcp?

+

You can install google-search-console-mcp by cloning the repository (https://github.com/sarahpark/google-search-console-mcp) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is sarahpark/google-search-console-mcp safe to use?

+

Our security agent has analyzed sarahpark/google-search-console-mcp and assigned a Trust Score of 95/100 (tier: Verified). See the full breakdown of passed checks and flags on this page.

Who maintains sarahpark/google-search-console-mcp?

+

sarahpark/google-search-console-mcp is maintained by sarahpark. The last recorded GitHub activity is dated 2026-09-19, with 2 open issues.

Are there alternatives to google-search-console-mcp?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy google-search-console-mcp to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: sarahpark/google-search-console-mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/sarahpark-google-search-console-mcp)](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>