gemini-mcp-tool vs everything
Side-by-side comparison to help you pick between these two MCP servers.
gemini-mcp-tool by jamubc | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 2,212 | ★ 85,748 |
| 30d uses | — | — |
| Score | 54 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 6 mo ago | this month |
gemini-mcp-tool · Summary
MCP server enabling AI assistants to interact with Google Gemini CLI for large file analysis and codebase understanding.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
gemini-mcp-tool · Use cases
- Analyze large codebases using Gemini's extensive token window
- Ask natural language questions about code with file references
- Safely test and execute code in Gemini's sandbox environment
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-tool · Install
Installation
**Prerequisites:**
- Node.js (v16.0.0 or higher)
- Google Gemini CLI installed and configured
**One-Line Setup:**
claude mcp add gemini-cli -- npx -y gemini-mcp-tool**Claude Desktop Configuration:**
{
"mcpServers": {
"gemini-cli": {
"command": "npx",
"args": ["-y", "gemini-mcp-tool"]
}
}
}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