Skip to content

v1.0.0 - Initial Release

Choose a tag to compare

@PleasePrompto PleasePrompto released this 07 Jan 17:24

Google AI Mode MCP Server v1.0.0

First stable release of the Google AI Mode MCP Server.

What This Is

An MCP server that connects any MCP-compatible code agent to Google AI Mode for free, token-efficient web research with grounded sources and inline citations.

Key Features

Free Access - No API keys or subscriptions needed
Multi-Agent Support - Works with Claude Code, Codex, Cursor, Cline, Windsurf, Zed
Query Optimization - Built-in prompt with 5 comprehensive examples
Token Efficient - One synthesized answer instead of reading 5-10 pages
Source Citations - Inline references [1][2][3] with full source list
3-Layer CAPTCHA Detection - Robust handling with automatic fallback
TypeScript - Full type safety and IntelliSense support

Installation

Claude Code:

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

Codex:

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

Other MCP clients (Cursor, Cline, Windsurf, Zed):
Add to your MCP config file:

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

Quick Start

"Search Google AI Mode for: Next.js 15 App Router best practices"

Your agent will automatically optimize the query and return a clean, cited answer.

npm Package

npm install -g google-ai-mode-mcp

Or use with npx (recommended):

npx google-ai-mode-mcp@latest

Requirements

  • Node.js 18.0.0+
  • Internet connection

Documentation

  • Full README with examples and troubleshooting
  • Query optimization guide with 5 examples
  • Complete installation instructions for all MCP clients

For Claude Code only? Check out the Skill version for simpler installation.