filesystem vs rohlik-mcp
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | rohlik-mcp by tomaspavlin | |
|---|---|---|
| Stars | ★ 85,748 | ★ 108 |
| 30d uses | — | — |
| Score | 77 | 47 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | E-commerceAI / LLM ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 2 mo ago |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
rohlik-mcp · Summary
MCP server enabling AI assistants to shop groceries across Rohlik Group platforms in 6 European countries.
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
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
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.
rohlik-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).