drio
Open app

Google Search Console MCP Server

Source

Catalog onlyCatalog onlySTDIO

Overview

The Google Search Console MCP Server is a tool designed to integrate with Google Search Console (GSC) data, allowing users to analyze SEO performance, generate visual reports, and uncover optimization opportunities.

To use the MCP Server, follow the setup instructions to create Google Cloud credentials, install required tools, and configure the server. Once set up, you can run queries and visualize data through Claude Desktop.

  • Integration with Google Search Console for advanced search analytics. - Ability to generate visual reports such as bar charts and line graphs. - Tools for comparing time periods to identify SEO improvements.
  1. Analyzing click-through rates and impressions over time.
  2. Generating visual reports to present SEO performance data.
  3. Identifying optimization opportunities based on search performance metrics.

Add to your AI client

Use these steps to connect Google Search Console MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "gsc-mcp-server-seotesting-com": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-gsc-mcp-server-seotesting-com"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "gsc-mcp-server-seotesting-com": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-gsc-mcp-server-seotesting-com"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "gsc-mcp-server-seotesting-com": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-gsc-mcp-server-seotesting-com"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "gsc-mcp-server-seotesting-com": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-gsc-mcp-server-seotesting-com"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "gsc-mcp-server-seotesting-com": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-gsc-mcp-server-seotesting-com"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "gsc-mcp-server-seotesting-com": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-gsc-mcp-server-seotesting-com"
      ]
    }
  }
}

FAQ

Is the MCP Server easy to set up?

Yes! The setup guide is designed to be beginner-friendly, requiring minimal technical skills.

What tools are available in the MCP Server?

The MCP Server provides tools for listing verified sites, querying search analytics, and generating visual reports.

Can I use the MCP Server without prior experience?

Yes! The tutorial guides you through each step, making it accessible for users without advanced technical knowledge.