everything vs mcp-gemini-google-search
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | mcp-gemini-google-search by yukukotani | |
|---|---|---|
| Stars | ★ 85,748 | ★ 79 |
| 30d uses | — | — |
| Score | 77 | 43 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsSearchDeveloper Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 10 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-gemini-google-search · Summary
MCP server providing Google Search functionality using Gemini's built-in Grounding with Google Search feature.
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
mcp-gemini-google-search · Use cases
- Real-time information retrieval in AI assistants
- Adding web search capabilities to MCP-compatible clients
- Research tasks requiring current web data with source verification
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-everythingmcp-gemini-google-search · Install
Installation
npm install -g mcp-gemini-google-searchEnvironment Variables
# For Google AI Studio (default)
export GEMINI_API_KEY="your-api-key-here"
export GEMINI_MODEL="gemini-2.5-flash" # Optional
# For Vertex AI
export GEMINI_PROVIDER="vertex"
export VERTEX_PROJECT_ID="your-gcp-project-id"
export VERTEX_LOCATION="us-central1" # OptionalClaude Code Configuration
claude mcp add gemini-google-search \
-s user \
-e GEMINI_API_KEY="your-api-key-here" \
-- npx mcp-gemini-google-search