MCP Catalogs
Home

everything vs google-ai-mode-mcp

Side-by-side comparison to help you pick between these two MCP servers.

everything
by modelcontextprotocol
google-ai-mode-mcp
by PleasePrompto
Stars★ 85,748★ 117
30d uses
Score7746
Official
Categories
Developer ToolsAI / LLM ToolsOther
SearchAI / LLM ToolsDeveloper Tools
LanguageTypeScriptTypeScript
Last committhis month4 mo ago

everything · Summary

Official MCP test server exercising all protocol features for client builders.

google-ai-mode-mcp · Summary

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

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

google-ai-mode-mcp · Use cases

  • Research coding topics and best practices with official documentation examples
  • Compare technical specifications and features of software products
  • Research regulatory changes and legal requirements with government sources

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything

google-ai-mode-mcp · Install

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"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.