everything vs cezzis-com-cocktails-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | cezzis-com-cocktails-mcp by mtnvencenzo | |
|---|---|---|
| Stars | ★ 85,748 | ★ 0 |
| 30d uses | — | — |
| Score | 77 | 36 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Productivityfood-beverageAI / LLM Tools |
| Language | TypeScript | Go |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
cezzis-com-cocktails-mcp · Summary
Go-based MCP server for Cezzis.com cocktails that exposes tools for searching cocktails and managing user authentication.
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
cezzis-com-cocktails-mcp · Use cases
- AI assistants helping mixologists discover new cocktail recipes
- Personalized cocktail recommendations based on user preferences
- Automated cocktail database management for bars and restaurants
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-everythingcezzis-com-cocktails-mcp · Install
Installation
- **Prerequisites**:
- Go 1.25.1+ - PostgreSQL - Upstream API credentials
- **Configure environment**:
Create .env file in cocktails.mcp/src with required credentials ``env PORT=7999 ENV=loc COCKTAILS_API_HOST=https://your-host/cocktails # ... other env vars ``
- **Build and run**:
``bash make compile ./cocktails.mcp/dist/linux/cezzis-cocktails ``
- **For Claude Desktop**:
Add to claude_desktop_config.json: ``json { "mcpServers": { "cezzis-cocktails": { "command": "./cocktails.mcp/dist/linux/cezzis-cocktails", "args": [] } } } ``