mcp-server-home-assistant vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-home-assistant by allenporter | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 67 | ★ 85,748 |
| 30d uses | — | — |
| Score | 37 | 77 |
| Official | — | ✓ |
| Categories | home-automationDeveloper ToolsAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 15 mo ago | this month |
mcp-server-home-assistant · Summary
MCP server for Home Assistant that enables AI models to interact with home automation systems.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-server-home-assistant · Use cases
- Control smart home devices through conversational AI
- Query home environment data (temperature, occupancy, etc.)
- Create home automation triggered by AI models
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
mcp-server-home-assistant · Install
Installation
- Install the [home-assistant-model-context-protocol](https://github.com/allenporter/home-assistant-model-context-protocol) custom component in your Home Assistant instance
- Create a [Long Lived Access Token](https://www.home-assistant.io/docs/authentication/#your-account-profile)
- Clone this repository to your local machine
- Edit your
claude_desktop_config.json:
{
"mcpServers": {
"Home-assistant": {
"command": "uv",
"args": [
"--directory",
"<path_to_repo>",
"run",
"mcp-server-home-assistant",
"-v",
"-v"
],
"env": {
"HOME_ASSISTANT_WEB_SOCKET_URL": "http://localhost:8123/api/websocket",
"HOME_ASSISTANT_API_TOKEN": "your_api_token_here"
}
}
}
}everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything