everything vs rohlik-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | rohlik-mcp by tomaspavlin | |
|---|---|---|
| Stars | ★ 85,748 | ★ 108 |
| 30d uses | — | — |
| Score | 77 | 47 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | E-commerceAI / LLM ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 2 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
rohlik-mcp · Summary
MCP server enabling AI assistants to shop groceries across Rohlik Group platforms in 6 European countries.
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
rohlik-mcp · Use cases
- Smart grocery shopping with AI assistants based on purchase history
- Comparing prices and finding deals across multiple regions
- Automating recurring grocery orders and meal planning
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-everythingrohlik-mcp · Install
Installation
Install via Claude Desktop by adding to your config file:
**macOS:** ~/Library/Application Support/Claude/claude_desktop_config.json **Windows:** %APPDATA%/Claude/claude_desktop_config.json
{
"mcpServers": {
"rohlik": {
"command": "npx",
"args": ["-y", "@tomaspavlin/rohlik-mcp"],
"env": {
"ROHLIK_USERNAME": "your-email@example.com",
"ROHLIK_PASSWORD": "your-password",
"ROHLIK_BASE_URL": "https://www.rohlik.cz"
}
}
}
}Alternatively, install locally for development:
npm install
npm run buildSet ROHLIK_BASE_URL to match your region: knuspr.de (Germany), gurkerl.at (Austria), kifli.hu (Hungary), or sezamo.ro (Romania).