everything vs nanobanana-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | nanobanana-mcp by YCSE | |
|---|---|---|
| Stars | ★ 85,748 | ★ 28 |
| 30d uses | — | — |
| Score | 77 | 44 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsMediaProductivity |
| Language | TypeScript | JavaScript |
| Last commit | this month | 3 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
nanobanana-mcp · Summary
An MCP server integrating Gemini's image generation and editing capabilities with Claude Desktop and Claude Code.
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
nanobanana-mcp · Use cases
- Creating concept art and visual designs directly within Claude
- Maintaining visual consistency across multiple image generations
- Editing and iterating on images using natural language instructions
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-everythingnanobanana-mcp · Install
Installation
Prerequisites
- Node.js 18+
- Google AI API Key
Add to Claude Desktop
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"nanobanana-mcp": {
"command": "npx",
"args": ["-y", "@ycse/nanobanana-mcp"],
"env": {
"GOOGLE_AI_API_KEY": "your_api_key"
}
}
}
}Add to Claude Code
claude mcp add nanobanana-mcp -- npx -y @ycse/nanobanana-mcp \
-e "GOOGLE_AI_API_KEY=your_api_key"