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

Claude Code Prompt Improver v0.5.3: Plan Mode Refactor and Subagent-First Research
v0.5.3 adds a PreToolUse hook for plan mode readability (clean rewrites, no decision history) and moves vague prompt research to Task/Explore subagents on Haiku to save main-context tokens. The plugin now works on Windows and has 1.4K+ GitHub stars.

LLM Agent Builds Complete Godot 4 Dungeon Crawler Using Visual Feedback
A developer connected an LLM agent to Godot 4 using an MCP tool and gave it a single prompt to build a dungeon crawler FPS. The agent created a complete prototype with 3 rooms, lighting, combat, enemies, and progression by running the game, taking screenshots, and fixing visual issues.

Yavio: Open-Source Product Analytics SDK for MCP Apps
Yavio is an open-source product analytics SDK for MCP and MCP Apps that automatically captures tool calls, errors, and resource reads with one function call. The MIT-licensed project provides a dashboard with per-tool breakdowns, funnels, retention, and error tracking.

Agent Kernel: Three Markdown Files for Stateful AI Agents
Agent Kernel provides three markdown files that enable stateful behavior in AI coding agents without databases or custom frameworks. It works with OpenCode, Claude Code, Codex, Cursor, Windsurf, and similar tools.