Documentation
Connect your marketing data to Claude, ChatGPT and other LLMs.
Connect to Claude Code (CLI)
Claude Code (Anthropic's terminal CLI) handles HTTP MCP with OAuth natively.
One command (OAuth)
claude mcp add --transport http google-search-console https://gadspilot.com/mcp-gsc
The next time a prompt calls a gadspilot tool, Claude Code opens your browser for OAuth, then the tool executes.
Headless / no browser? Use a token
On a server or CI where no browser is available, skip OAuth and pass a Personal Access Token as a header. Generate one from your dashboard (see Headless agents).
claude mcp add --transport http google-search-console https://gadspilot.com/mcp-gsc --header "Authorization: Bearer YOUR_TOKEN"
Verify install
claude mcp list
You should see google-search-console in the list with status connected (after the first OAuth).
Test
Launch Claude Code in any folder and type:
Top 10 Search Console queries last month — which page do they land on?
Uninstall
claude mcp remove google-search-console
💡
Why Claude Code? Ideal if you already work in the terminal — you can mix a code repo + your marketing data in the same session, e.g.: "Generate a React dashboard that displays the last 7 days of conversions from this endpoint."