Integration · Windsurf IDE
Add GSC PAP to Windsurf IDE
4 steps · about 5 minutes
Windsurf is Codeium's AI-first IDE. Its Cascade agent supports MCP servers, both local stdio and remote Streamable HTTP, letting you wire any data source into chat.
GSC PAP fits into the remote-server slot. One config block, one token, and Cascade can answer SEO questions inline with whatever code you're working on.
Steps
- 1
Open Windsurf MCP settings
Windsurf → Settings → Cascade → MCP Servers (or use Cmd/Ctrl + , and search "MCP"). The exact path varies slightly by Windsurf version; the panel is consistently named MCP / Model Context Protocol.
- 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 as a remote MCP server
Click "Add server." Choose remote/HTTP transport. Enter the URL, paste your token in the Authorization header field. Save.
json{ "mcpServers": { "gsc-pap": { "serverUrl": "https://mcp.gscpap.com/mcp", "headers": { "Authorization": "Bearer YOUR_TOKEN_HERE" } } } } - 4
Reload Windsurf and ask Cascade
Restart Windsurf so Cascade picks up the new server. Open Cascade and try: "Use the gsc-pap MCP. Show me my top 10 queries by clicks last week." Cascade routes through search_analytics_query and returns the table.
Common gotchas
- ·Cascade caches the tool list aggressively. If a tool you registered doesn't appear, restart Windsurf (not just reload window).
- ·If you see `Bearer token rejected`, the token may have been revoked. Mint a new one at /account/tokens.
- ·Windsurf on some platforms requires the .json config in `~/.codeium/windsurf/mcp_config.json`. Check Windsurf docs for your exact OS path if the in-app form doesn't persist.
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.
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.
Continue (extension)
Continue is a popular open-source AI coding assistant with VS Code and JetBrains extensions. Add GSC PAP as an MCP server in three minutes via its config.json.
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.