MCP Catalogs
Home

google-ai-mode-mcp

by PleasePrompto·117·Score 46

MCP server enabling AI-powered Google AI Mode search with citations for any LLM client.

searchai-llmdeveloper-tools
17
Forks
6
Open issues
4 mo ago
Last commit
2d ago
Indexed

Overview

This MCP server connects your code agent (Claude, Cursor, Cline, etc.) to Google's AI Mode search, which synthesizes information from dozens of web sources into a single, cited answer. Instead of reading multiple pages, your agent receives one clean, structured response with inline citations, saving tokens and improving research quality. The server handles browser automation, CAPTCHA solving, and query optimization to deliver professional-grade research capabilities.

Try asking AI

After installing, here are 5 things you can ask your AI assistant:

you:Research coding topics and best practices with official documentation examples
you:Compare technical specifications and features of software products
you:Research regulatory changes and legal requirements with government sources
you:Is this free to use?
you:How does it handle CAPTCHAs?

When to choose this

Choose this when you need free, efficient web research with AI-synthesized answers and citations, especially for coding, technical comparisons, and factual topics where source verification is important.

When NOT to choose this

Avoid this if you need real-time data, highly specialized content not covered by Google AI Mode, or if you're in a region where Google services are restricted without proxy configuration.

Tools this server exposes

1 tool extracted from the README
  • search_ai

    Search Google AI Mode for synthesized answers with citations

Comparable tools

search-mcpbing-search-mcpweb-scraper-mcp

Installation

Installation

**Claude Code:**

claude mcp add google-ai-search npx google-ai-mode-mcp@latest

**Cursor, Windsurf, Zed, or other MCP clients:**

{
  "mcpServers": {
    "google-ai-search": {
      "command": "npx",
      "args": ["google-ai-mode-mcp@latest"]
    }
  }
}

**Linux/WSL users:** If you encounter X-Server errors, use xvfb-run:

{
  "mcpServers": {
    "google-ai-search": {
      "command": "xvfb-run",
      "args": ["-a", "npx", "google-ai-mode-mcp@latest"]
    }
  }
}

FAQ

Is this free to use?
Yes, the server is open source and uses public Google Search. No API keys or subscriptions are needed.
How does it handle CAPTCHAs?
On first query, you may see a CAPTCHA. Tell your agent 'Switch to visible mode' to solve it manually. After the first CAPTCHA, searches typically run in headless mode automatically.

Compare google-ai-mode-mcp with

GitHub →

Last updated · Auto-generated from public README + GitHub signals.