GSC MCP Server

GSC MCP Server

A Model Context Protocol server that provides read-only access to Google Search Console data, enabling natural language queries about SEO performance, rankings, and indexing status.

Category
访问服务器

README

GSC MCP Server

A Model Context Protocol server that gives Claude (and any MCP client) read-only access to your Google Search Console data. Ask Claude about your SEO performance, rankings, click-through rates, and indexing status — all from natural conversation.

What You Get

9 tools that cover the full range of GSC data analysis:

Tool What it does
gsc_query_performance Flexible raw queries with full filter control — dimensions, date ranges, device, country
gsc_top_pages Top performing pages ranked by clicks, impressions, CTR, or position
gsc_top_queries Top search queries driving traffic to your site
gsc_page_queries "What queries does this page rank for?"
gsc_query_pages "Which pages rank for this query?" — cannibalization detection
gsc_position_tracker Compare two date ranges to find ranking changes — flags significant movers
gsc_ctr_analysis Quick wins: pages with high impressions but low CTR (title/meta optimization targets)
gsc_list_sites List all GSC properties your account can access
gsc_inspect_url Check index status, crawl info, mobile usability, and rich results for any URL

All tools support response_format: "markdown" | "json" and a site_url parameter for multi-site use.

Example Usage

Once configured, just ask Claude things like:

  • "What are my top search queries this month?"
  • "What is alloypartners.com/blog/venture-builder ranking for?"
  • "Find pages with high impressions but low CTR — where can I improve titles?"
  • "Which of my pages rank for 'venture studio'? Is there cannibalization?"
  • "How have my rankings changed compared to last month?"
  • "Is this URL indexed by Google?"

Quick Start

1. Clone and build

git clone https://github.com/drewbeechler/gsc-mcp-server.git
cd gsc-mcp-server
npm install
npm run build

2. Set up Google Cloud credentials (one-time)

You need OAuth 2.0 credentials to authenticate with the Search Console API. See Google Cloud Setup below for the full walkthrough.

3. Add to Claude

Claude Code — add to ~/.claude.json:

{
  "mcpServers": {
    "gsc": {
      "command": "node",
      "args": ["/path/to/gsc-mcp-server/dist/index.js"],
      "env": {
        "GSC_OAUTH_SECRETS_FILE": "/path/to/client_secrets.json",
        "GSC_SITE_URL": "sc-domain:yoursite.com"
      }
    }
  }
}

Claude Desktop — add the same config to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows).

4. Authorize

The first time a GSC tool is called, your browser will open for Google OAuth authorization. Sign in, approve, and the token is cached at ~/.gsc-mcp/token.json for all future sessions.


Google Cloud Setup

One-time setup to get OAuth credentials. Takes about 5 minutes.

Step 1: Create a Google Cloud Project

  1. Go to Google Cloud Console
  2. Click the project dropdown at the top → New Project
  3. Name it something like gsc-mcp-server → click Create
  4. Make sure the new project is selected

Step 2: Enable the Search Console API

  1. Go to APIs & Services → Library
  2. Search for "Google Search Console API"
  3. Click on it → click Enable

Step 3: Configure OAuth Consent Screen

  1. Go to APIs & Services → OAuth consent screen (may show as "Google Auth Platform")
  2. Fill in App name (e.g., GSC MCP Server) and your email
  3. For Audience/User type, select External (or Internal if you're on Google Workspace)
  4. Add your email as a test user if prompted
  5. Complete the setup

Note: The scopes are requested at runtime by the server — you don't need to manually add them in the console.

Step 4: Create OAuth Credentials

  1. Go to APIs & Services → Credentials (or Clients in the new Auth Platform UI)
  2. Click + Create Credentials → OAuth client ID
  3. Application type: Desktop app
  4. Click CreateDownload JSON
  5. Save the file somewhere safe:
    mkdir -p ~/.gsc-mcp
    mv ~/Downloads/client_secret_*.json ~/.gsc-mcp/client_secrets.json
    

Step 5: Test it

npx @modelcontextprotocol/inspector node dist/index.js

This opens an interactive UI where you can test any tool. Try gsc_list_sites first to verify auth works.

"Unverified app" warning: If you set user type to External, you'll see this on first auth. Click Advanced → Go to GSC MCP Server (unsafe). This is normal for personal-use OAuth apps.


Environment Variables

Variable Required Description
GSC_OAUTH_SECRETS_FILE Yes Path to your client_secrets.json from Google Cloud
GSC_SITE_URL No Default GSC property (e.g., sc-domain:example.com). Can also be passed per-tool call.

You can set these in a .env file in the project root — the server loads it automatically via dotenv.


Troubleshooting

"Authentication failed (401)" — Delete ~/.gsc-mcp/token.json and restart to re-authorize.

"Site not found (404)" — Check the site_url format. Domain properties use sc-domain:example.com, URL-prefix properties use the full URL like https://example.com/.

"Access denied (403)" — Make sure your Google account has access to the Search Console property. Verify at search.google.com/search-console.

"No data returned" — GSC data lags 2-3 days. Default date ranges account for this, but if you've overridden dates to include today, that's likely the issue.


Tech Stack

  • TypeScript + Node.js
  • MCP SDK (@modelcontextprotocol/sdk) — stdio transport
  • Google APIs (googleapis) — handles OAuth + token refresh natively
  • Zod — runtime input validation

License

MIT

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选
mcp-server-qdrant

mcp-server-qdrant

这个仓库展示了如何为向量搜索引擎 Qdrant 创建一个 MCP (Managed Control Plane) 服务器的示例。

官方
精选
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选