homebutler vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
homebutler by Higangssh | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 151 | ★ 85,748 |
| 30d uses | — | — |
| Score | 48 | 77 |
| Official | — | ✓ |
| Categories | Ops & InfraMonitoringDeveloper Tools | File SystemDeveloper ToolsProductivity |
| Language | Go | TypeScript |
| Last commit | this month | this month |
homebutler · Summary
HomeButler is a single-binary homelab management tool with MCP server capabilities for monitoring and managing servers.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
homebutler · Use cases
- AI assistants monitoring server health without SSH access
- Automated homelab maintenance and diagnostics
- Structured server inventory for documentation and troubleshooting
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
homebutler · Install
Installation
# One-line install (auto-detects OS/arch)
curl -fsSL https://raw.githubusercontent.com/Higangssh/homebutler/main/install.sh | sh
# Or via Homebrew
brew install Higangssh/homebutler/homebutler
# Interactive setup — add your servers in seconds
homebutler initMCP Configuration
Add to Claude Desktop config.json:
{
"mcpServers": {
"homebutler": {
"command": "homebutler",
"args": ["mcp"]
}
}
}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.