MCP Catalogs
Home

everything vs xiaozhi-esp32-server

Side-by-side comparison to help you pick between these two MCP servers.

everything
by modelcontextprotocol
xiaozhi-esp32-server
by xinnan-tech
Stars★ 85,748★ 9,554
30d uses
Score7758
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsCommunicationAI / LLM Tools
LanguageTypeScriptJavaScript
Last committhis monththis month

everything · Summary

Official MCP test server exercising all protocol features for client builders.

xiaozhi-esp32-server · Summary

MCP server for ESP32 device management with voice recognition, MQTT, and multi-language support.

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

xiaozhi-esp32-server · Use cases

  • Controlling ESP32-based IoT devices through voice commands
  • Building intelligent home automation systems with voice recognition
  • Creating multi-language voice interfaces for embedded devices

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

xiaozhi-esp32-server · Install

Installation Options

Docker Deployment (Recommended)

  1. Clone the repository: git clone https://github.com/xinnan-tech/xiaozhi-esp32-server.git
  2. Navigate to the project directory: cd xiaozhi-esp32-server
  3. Start with Docker: docker-compose up -d

Source Code Deployment

  1. Clone the repository: git clone https://github.com/xinnan-tech/xiaozhi-esp32-server.git
  2. Install dependencies: npm install
  3. Configure your environment variables in .env file
  4. Start the server: npm start

Claude Desktop Configuration

Add the following to your Claude Desktop claude_desktop_config.json:

{
  "mcpServers": {
    "xiaozhi-esp32": {
      "command": "node",
      "args": ["/path/to/xiaozhi-esp32-server/server.js"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.