gemini-webapi-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
gemini-webapi-mcp by AndyShaman | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 27 | ★ 85,748 |
| 30d uses | — | — |
| Score | 44 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsMediaBrowser Automation | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 2 mo ago | this month |
gemini-webapi-mcp · Summary
MCP server for Google Gemini that provides image generation, editing, chat, and file analysis via browser cookies.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
gemini-webapi-mcp · Use cases
- Generate and edit images through natural language prompts
- Analyze documents, videos and web pages
- Have conversations with Gemini Flash and Pro models
- Create high-resolution artwork without watermarks
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-webapi-mcp · Install
Installation
**From GitHub (no clone needed):**
uv run --with "gemini-webapi-mcp @ git+https://github.com/AndyShaman/gemini-webapi-mcp.git" gemini-webapi-mcp**Local install:**
git clone https://github.com/AndyShaman/gemini-webapi-mcp.git
cd gemini-webapi-mcp
uv sync
uv run gemini-webapi-mcp**Claude Desktop Configuration:**
Add to claude_desktop_config.json:
{
"mcpServers": {
"gemini": {
"command": "uv",
"args": ["run", "--with", "gemini-webapi-mcp @ git+https://github.com/AndyShaman/gemini-webapi-mcp.git", "gemini-webapi-mcp"]
}
}
}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