filesystem vs cezzis-com-cocktails-mcp
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | cezzis-com-cocktails-mcp by mtnvencenzo | |
|---|---|---|
| Stars | ★ 85,748 | ★ 0 |
| 30d uses | — | — |
| Score | 77 | 36 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | Productivityfood-beverageAI / LLM Tools |
| Language | TypeScript | Go |
| Last commit | this month | this month |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
cezzis-com-cocktails-mcp · Summary
Go-based MCP server for Cezzis.com cocktails that exposes tools for searching cocktails and managing user authentication.
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
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
filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.
cezzis-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": [] } } } ``