Integration · Continue (extension)
Add GSC PAP to Continue
3 steps · about 3 minutes
Continue is a free, open-source AI coding extension that runs in VS Code, JetBrains IDEs, and other hosts. It supports MCP servers natively through its `mcpServers` config block.
If you already have Continue installed and configured with a model, this guide is three minutes from start to finish.
Steps
- 1
Open Continue's config
Continue stores config at `~/.continue/config.json` (or `~/.continue/config.yaml` for newer versions). Click the Continue icon in your IDE → gear icon → Open config. The file opens in your editor.
- 2
Sign in to GSC PAP and copy your token
Visit gscpap.com → Sign in with Google → grant Search Console + GA4 scopes → copy the bearer token from the connect page.
- 3
Add gsc-pap to mcpServers and reload
Add a `gsc-pap` entry under `mcpServers`. Replace YOUR_TOKEN with your bearer. Save the file. Continue auto-reloads. Open Continue chat and ask: "List my Search Console sites."
json{ "mcpServers": { "gsc-pap": { "transport": { "type": "http", "url": "https://mcp.gscpap.com/mcp", "headers": { "Authorization": "Bearer YOUR_TOKEN_HERE" } } } } }
Common gotchas
- ·If you use `config.yaml` instead of JSON, convert the snippet, same keys, YAML indentation.
- ·Continue's auto-reload sometimes misses MCP changes. If gsc-pap doesn't show up in the tools list, restart your IDE host (VS Code Cmd+Q, IntelliJ File → Invalidate Caches & Restart).
- ·Free Continue users with rate-limited models (Claude Haiku, GPT-4o-mini) may hit context limits on large GSC responses. Pin to a higher-tier model for big queries.
Other integrations
All integrationsClaude Desktop
Wire your Google Search Console to Claude Desktop in five minutes. Step-by-step instructions for macOS and Windows, with the exact JSON config to paste.
Cursor
Use Search Console data inside Cursor's AI chat. Five-step setup, single JSON config, works in any project.
Claude Code
Two-line CLI setup for Claude Code, Anthropic's terminal-based agent. User-scope means it works in every project automatically.
Codex CLI (OpenAI)
Connect Google Search Console, GA4, and PageSpeed Insights to OpenAI's Codex CLI in three minutes. Bearer-token auth via env var, works in both the CLI and the Codex IDE extension.
VS Code (GitHub Copilot)
Wire your Google Search Console + GA4 + PageSpeed data into VS Code's GitHub Copilot agent mode in five minutes. Native MCP support since VS Code 1.101.
Gemini CLI (Google)
Connect Search Console, GA4, and PageSpeed data to Google's Gemini CLI agent. Streamable HTTP MCP support, bearer-token auth, works inside Gemini's 1M-token context window.
Windsurf IDE
Plug Search Console, GA4, and PageSpeed data into Windsurf's Cascade agent in five minutes. Bearer-token auth, works with both local and remote agent runs.
Zed Editor
Wire Search Console, GA4, and PageSpeed Insights into Zed's AI assistant. Native MCP context-server support via settings.json.
JetBrains IDEs
Wire Search Console, GA4, and PageSpeed into IntelliJ, PyCharm, WebStorm, GoLand, any JetBrains IDE 2025.2 or newer. Native MCP support via the AI Assistant settings.
Claude.ai (browser)
Connect Search Console, GA4, and PageSpeed to Claude.ai in your browser through the Connectors panel. OAuth flow, no token to copy, no config file to edit. Works for free and paid Claude plans.
Direct HTTP (curl, custom agents)
GSC PAP speaks Streamable HTTP MCP. Any client that can POST JSON-RPC over HTTP with a bearer Authorization header can use it, curl, Python scripts, custom LangChain agents, even shell aliases.