MCP Catalogs
Home

Google-Search-MCP vs everything

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

Google-Search-MCP
by kongyo2
everything
by modelcontextprotocol
Stars★ 3★ 85,748
30d uses
Score3377
Official
Categories
SearchWeb ScrapingDeveloper Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit9 mo agothis month

Google-Search-MCP · Summary

Experimental MCP server for enhanced Google search with advanced anti-detection features.

everything · Summary

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

Google-Search-MCP · Use cases

  • Information retrieval for research and analysis using complex search queries
  • Web scraping tasks requiring Google search results with custom parameters
  • Automation workflows needing search functionality with anti-blocking measures

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-Search-MCP · Install

Installation

Installing via Smithery

To install google-search-mcp for Claude Desktop automatically via [Smithery](https://smithery.ai/server/@kongyo2/google-search-mcp):

npx -y @smithery/cli install @kongyo2/google-search-mcp --client claude

Manual Installation

npm install

Configuration with Claude Desktop

Add this configuration to your Claude Desktop MCP settings:

{
  "mcpServers": {
    "enhanced-google-search": {
      "command": "npx",
      "args": ["tsx", "/path/to/your/project/src/server.ts"]
    }
  }
}

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