ha-mcp-for-xiaozhi vs everything
Side-by-side comparison to help you pick between these two MCP servers.
ha-mcp-for-xiaozhi by c1pher-cn | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 234 | ★ 85,748 |
| 30d uses | — | — |
| Score | 46 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsOther | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 7 mo ago | this month |
ha-mcp-for-xiaozhi · Summary
Home Assistant MCP server for Xiaozhi AI enabling direct integration with voice assistants.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
ha-mcp-for-xiaozhi · Use cases
- Voice control of Home Assistant devices through Xiaozhi AI assistant
- Integration of multiple MCP servers with Xiaozhi for extended functionality
- Creating custom scripts for complex device automation via voice commands
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
ha-mcp-for-xiaozhi · Install
Install via HACS in Home Assistant:
- Open HACS and search for 'xiaozhi' or 'ha-mcp-for-xiaozhi'
- Download the integration
- Restart Home Assistant
- Go to Settings > Devices & Services > Add Integration
- Search for 'MCP Server for Xiaozhi' and configure with your Xiaozhi MCP endpoint
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