loading…
Search for a command to run...
loading…
SEO audit and Google Search Console MCP server with 23 tools. Search analytics, URL inspection, Indexing API, Core Web Vitals (CrUX), striking distance keywords
SEO audit and Google Search Console MCP server with 23 tools. Search analytics, URL inspection, Indexing API, Core Web Vitals (CrUX), striking distance keywords, keyword cannibalization detection, branded query analysis, and automated site audits.
A Model Context Protocol (MCP) server for SEO auditing with Google Search Console, Indexing API, Chrome UX Report, PageSpeed Insights, local Lighthouse, robots.txt checks, sitemap analysis, on-page SEO inspection, crawl audits, and live site analysis. Works with Claude Code, Claude Desktop, Cursor, and any MCP-compatible client.
Forked from AminForou/mcp-gsc and expanded into a broader technical SEO and performance audit server with 30 tools and a full test suite.
| Category | Tools | Description |
|---|---|---|
| Property Management | list_properties, add_site, delete_site |
List, add, and remove GSC properties |
| Search Analytics | get_search_analytics, get_advanced_search_analytics, get_performance_overview, get_search_by_page_query, compare_search_periods |
Query clicks, impressions, CTR, position with filtering, dimensions, and period comparison |
| URL Inspection | inspect_url, batch_inspect_urls |
Check indexing status, crawl info, canonical, robots for one or many URLs |
| Indexing API | request_indexing, request_removal, check_indexing_notification, batch_request_indexing |
Submit/remove URLs from Google's index via the Indexing API |
| Sitemaps | get_sitemaps, submit_sitemap, delete_sitemap |
List, submit, and delete sitemaps |
| Core Web Vitals | get_core_web_vitals |
LCP, FID, CLS, INP, TTFB via the Chrome UX Report (CrUX) API |
| Performance Audits | get_pagespeed_insights, run_lighthouse_audit |
Run PageSpeed Insights and local Lighthouse audits with category scores and failing audit summaries |
| Technical SEO | inspect_robots_txt, analyze_sitemap, analyze_page_seo, crawl_site_seo, audit_live_site |
Inspect robots.txt, validate sitemaps, extract on-page SEO signals, crawl internal pages, and run a live SEO audit without GSC access |
| SEO Analysis | find_striking_distance_keywords, detect_cannibalization, split_branded_queries |
Find keywords at positions 5-20, detect pages competing for the same query, split branded vs non-branded traffic |
| Site Audit | site_audit |
All-in-one report: sitemap health, indexing status, canonical mismatches, performance summary |
| Auth | reauthenticate |
Switch Google accounts by clearing cached OAuth tokens |
30 tools total.
client_secrets.jsongit clone https://github.com/GiorgiKemo/mcp-seo-audit.git
cd mcp-seo-audit
python -m venv .venv
# Activate:
# macOS/Linux: source .venv/bin/activate
# Windows: .venv\Scripts\activate
pip install -r requirements.txt
~/.claude/settings.json){
"mcpServers": {
"seo-audit": {
"command": "/path/to/mcp-seo-audit/.venv/bin/python",
"args": ["/path/to/mcp-seo-audit/gsc_server.py"],
"env": {
"GSC_OAUTH_CLIENT_SECRETS_FILE": "/path/to/client_secrets.json",
"PAGESPEED_API_KEY": "your-google-api-key",
"CRUX_API_KEY": "your-google-api-key"
}
}
}
}
claude_desktop_config.json)Same JSON structure — see Claude Desktop MCP docs for config file location.
For field and lab performance data, set CRUX_API_KEY and PAGESPEED_API_KEY in the env block:
"env": {
"GSC_OAUTH_CLIENT_SECRETS_FILE": "/path/to/client_secrets.json",
"CRUX_API_KEY": "your-google-api-key",
"PAGESPEED_API_KEY": "your-google-api-key"
}
You can also set GOOGLE_API_KEY; the server uses it as the PageSpeed Insights fallback key.
| Variable | Required | Default | Description |
|---|---|---|---|
GSC_OAUTH_CLIENT_SECRETS_FILE |
OAuth | client_secrets.json |
Path to OAuth client secrets |
GSC_CREDENTIALS_PATH |
Service account | service_account_credentials.json |
Path to service account key |
GSC_SKIP_OAUTH |
No | false |
Set to true to skip OAuth and use service account only |
GSC_DATA_STATE |
No | all |
all = fresh data matching GSC dashboard, final = confirmed data (2-3 day lag) |
CRUX_API_KEY |
No | none | Google API key for Core Web Vitals (CrUX) |
PAGESPEED_API_KEY |
No | none | Google API key for PageSpeed Insights / Lighthouse API calls |
GOOGLE_API_KEY |
No | none | Fallback source for PAGESPEED_API_KEY |
LIGHTHOUSE_CHROME_PATH |
No | auto-detect | Optional explicit path to Chrome/Chromium for local Lighthouse CLI |
"List my GSC properties"
"Show search analytics for cdljobscenter.com last 28 days"
"Find striking distance keywords for my site"
"Detect keyword cannibalization"
"Run a full site audit"
"Check Core Web Vitals for cdljobscenter.com"
"Run PageSpeed Insights for https://example.com"
"Run a local Lighthouse audit for https://example.com"
"Inspect robots.txt for https://example.com"
"Analyze https://example.com/sitemap.xml"
"Analyze on-page SEO for https://example.com/jobs"
"Crawl https://example.com and report duplicate titles"
"Run a live SEO audit for https://example.com"
"Inspect indexing status of these URLs: /jobs, /companies, /pricing"
"Request indexing for https://mysite.com/new-page"
"Compare search performance this month vs last month"
81 tests covering all 30 tools with mocked Google/API/web-audit calls:
# Activate venv first
python -m pytest test_gsc_server.py -v
MIT. See LICENSE.
Based on AminForou/mcp-gsc.
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"mcp-seo-audit": {
"command": "npx",
"args": []
}
}
}PRs, issues, code search, CI status
Database, auth and storage
Reference / test server with prompts, resources, and tools.
Secure file operations with configurable access controls.