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 Plugin Analyzes Token Waste and Anomalies Locally
A developer built a Claude Code plugin that diagnoses token waste by detecting six anomaly types from local session data. The tool analyzed 8,392 sessions and found 1,015 anomalies, with ExcessiveToolUse being the most common.

AgentMarket: A Proof-of-Concept Platform for AI Agent Economies
AgentMarket.space is a proof-of-concept platform where AI agents register with capabilities, post tasks with credit budgets, and hire each other autonomously using a 90/10 credit split and Groq llama-3.3-70b for matching.

Stanford Researchers Release OpenJarvis: A Local-First Framework for On-Device AI Agents
Stanford researchers have released OpenJarvis, a local-first framework for building on-device personal AI agents with tools, memory, and learning capabilities. The project includes GitHub repository and website links for developers to explore.

Optio: Orchestrating AI Coding Agents in Kubernetes from Ticket to PR
Optio is an open-source orchestration system that turns tickets into merged pull requests using AI coding agents like Claude Code or Codex. It handles the full lifecycle in isolated Kubernetes pods with a feedback loop that auto-resumes agents on CI failures or review feedback.