Homebutler: MCP Server for Multi-Server Homelab Management via Claude

Homebutler is a single Go binary with a built-in Model Context Protocol (MCP) server that enables Claude and other AI assistants to manage multiple servers from a single interface. The tool addresses the pain point of manually SSH-ing into individual servers for routine tasks like checking disk space or restarting containers.
Setup and Configuration
To use homebutler with Claude Desktop, add this configuration to your MCP settings:
{
"mcpServers": {
"homebutler": {
"command": "npx",
"args": ["-y", "homebutler@latest"]
}
}
}
Set up homebutler on your main machine, add remote servers to the configuration file, and Claude can access all of them over SSH. No agent installation is required on remote servers.
Available Tools
Homebutler provides 9 MCP tools that work across multiple servers:
- System status monitoring (CPU, memory, disk, load)
- Docker container management
- Port scanning with process information
- Wake-on-LAN functionality
- Network device discovery
- Alert rules for disk full, high CPU, etc.
- Multi-server management over SSH
- Top processes monitoring
- Server configuration management
All tools work across servers — you can specify which server to query, and homebutler handles the SSH connection automatically.
Technical Details
The tool is a single binary with zero external dependencies, weighing 12MB. It runs on Linux and macOS and includes a web dashboard, TUI, and CLI interface. It works with any MCP-compatible client including Claude Desktop, Cursor, and ChatGPT.
The developer reports daily-driving the tool on a Mac Mini + Raspberry Pi 5 setup, using natural language commands like "what's the disk usage on my Pi" or "restart nginx on the NAS."
📖 Read the full source: r/ClaudeAI
👀 See Also

Helix: Open-Source Framework Turns Claude into Personal AI Agent for macOS
Helix is an open-source framework that connects Claude via Claude Code in Terminal to macOS through four MCP server plugins, enabling Claude to control applications, maintain persistent memory, run scheduled tasks, and operate with local voice processing.

Open Source Second Brain System Built on Claude Code for Task Management
An open source system called Kipi System uses Claude Code to track open threads, draft follow-ups, and manage tasks by pulling from calendar, email, CRM, and social feeds. It generates a daily HTML file with pre-written actions sorted by friction.

Reverse-engineering UniFi inform protocol for multi-tenant routing
The UniFi inform protocol sends device data to controllers via HTTP POST on port 8080 every 10 seconds. The first 40 bytes of each packet contain unencrypted device MAC addresses, enabling routing without decryption.

PreToolUse Hook Fixes Claude Code Image Crash Problem
A developer created a PreToolUse hook that intercepts Claude Code's Read calls on images, converts them safely, and proxies them through a Haiku subprocess to prevent API Error 400 crashes from problematic images.