everything vs gemini-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | gemini-mcp by RLabs-Inc | |
|---|---|---|
| Stars | ★ 85,748 | ★ 196 |
| 30d uses | — | — |
| Score | 77 | 51 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsDeveloper ToolsMedia |
| Language | TypeScript | TypeScript |
| Last commit | this month | 2 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
gemini-mcp · Summary
MCP Server enabling Claude to interact with Google's Gemini models, offering text processing, image generation, video creation, and document analysis.
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
gemini-mcp · Use cases
- Content creation with image generation and editing workflows
- Research and analysis using web search, document processing, and summarization tools
- Development assistance through code analysis and brainstorming between Claude and Gemini
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-everythinggemini-mcp · Install
# Using npm (Recommended)
claude mcp add gemini -s user -- env GEMINI_API_KEY=YOUR_KEY npx -y @rlabs-inc/gemini-mcp
# Using bun
claude mcp add gemini -s user -- env GEMINI_API_KEY=YOUR_KEY bunx @rlabs-inc/gemini-mcpOr install globally:
npm install -g @rlabs-inc/gemini-mngcli config set api-key YOUR_KEY