Open-source MCP server
Connect Claude to your Search Console in 60 seconds.
One-click OAuth, no local install. Lets any MCP-compatible host query your search performance — top queries, traffic drops, index status, sitemaps — and get SEO answers straight from a conversation.
We never store your Search Console data. Only an OAuth refresh token, encrypted at rest, so the connector can act on your behalf.
How it works
-
1
Click "Connect with Google"
Standard Google consent screen. You grant access to Search Console. We capture an offline refresh token, encrypt it with AES-256-GCM, and mint a personal MCP bearer token for you.
-
2
Paste the install command
One
claude mcp addcommand, pre-filled with your token, ready to copy. Works in Claude Code, Claude Desktop, Cursor, Continue.dev — anything that speaks MCP. -
3
Ask about your search traffic
Just ask. Examples:
- "Which queries lost the most clicks on example.com this month vs last?"
- "Find pages ranking in positions 5–15 with high impressions but low CTR."
- "Is https://example.com/pricing indexed? If not, why?"
8 tools, ready to call
list_sitesProperties you can access.
query_search_analyticsClicks, impressions, CTR, position — any dimension, any filter.
compare_periodsPeriod-over-period deltas: winners and losers.
inspect_urlIndex status, canonical, last crawl, rich results.
list_sitemapsSubmitted sitemaps + error counts.
get_sitemapOne sitemap's status in detail.
submit_sitemapSubmit or resubmit a sitemap.
delete_sitemapRemove a sitemap from the property.
Security model
- • Google refresh tokens are encrypted with AES-256-GCM before being written to Mongo. Key lives in env, never in the database.
- • MCP bearer tokens are stored as sha256 hashes only — the plaintext is shown once on connect, then unrecoverable.
- • Per-request OAuth client is built from the decrypted refresh token, used for that single call, then discarded.
- • Revoke at any time — server-side revocation is instant.
- • Code is open-source on GitLab; self-host if you'd rather not trust a hosted service.