MCP Catalogs
Home

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
Score4677
Official
Categories
AI / LLM ToolsDeveloper ToolsOther
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit7 mo agothis 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:

  1. Open HACS and search for 'xiaozhi' or 'ha-mcp-for-xiaozhi'
  2. Download the integration
  3. Restart Home Assistant
  4. Go to Settings > Devices & Services > Add Integration
  5. 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
Comparison generated from public README + GitHub signals. Last updated automatically.