Google MCP

Your Google APIs, wired into any MCP client.

A Model Context Protocol server that connects Claude Code, Claude Desktop, and anything else that speaks MCP to your Google data — starting with Search Console.

Connect to Claude Code

Wire this MCP server into Claude Code so your SEO agents can pull real Search Console data while they work.

  1. In your project directory, run:
    claude mcp add --transport http google-mcp https://google-mcp.rubygrowthlabs.com/mcp

    Add --scope project to share via .mcp.json with your team, or --scope user to make it available in every project.

  2. Start Claude Code and run /mcp to authenticate. Your browser will open and prompt you to grant access — sign in with the same Google account you use here.
  3. Your agents can now call these tools:
    • gsc_list_properties — list all sites
    • gsc_query_search_analytics — clicks, impressions, CTR, position by query/page/country/device/date
    • gsc_list_sitemaps — list submitted sitemaps
    • gsc_submit_sitemap — submit a new sitemap
    • gsc_inspect_url — URL inspection (index status, canonical, mobile usability)

Connect to Claude Desktop

Use Google Search Console data directly from Claude Desktop chats.

Option 1 — Custom Connector (Pro, Max, Team, Enterprise)

  1. Open Claude Desktop → Settings → Connectors.
  2. Click Add custom connector.
  3. Enter a name (e.g. Google MCP) and paste this URL:
    https://google-mcp.rubygrowthlabs.com/mcp
  4. Expand Advanced settings and paste the Client ID and Client Secret from the card above. If you skip this, Claude Desktop will auto-register a new client via Dynamic Client Registration instead.
  5. Save. When prompted, sign in with the same Google account you use here.

Option 2 — Config file (any plan)

Edit claude_desktop_config.json (macOS: ~/Library/Application Support/Claude/claude_desktop_config.json; Windows: %APPDATA%\Claude\claude_desktop_config.json) and add:

{
  "mcpServers": {
    "google-mcp": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://google-mcp.rubygrowthlabs.com/mcp"]
    }
  }
}

Requires Node.js. Restart Claude Desktop; a browser window will open to complete the Google sign-in.