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 | — | — |
| Score | 77 | 58 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsCommunicationAI / LLM Tools |
| Language | TypeScript | JavaScript |
| Last commit | this month | this 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-everythingxiaozhi-esp32-server · Install
Installation Options
Docker Deployment (Recommended)
- Clone the repository:
git clone https://github.com/xinnan-tech/xiaozhi-esp32-server.git - Navigate to the project directory:
cd xiaozhi-esp32-server - Start with Docker:
docker-compose up -d
Source Code Deployment
- Clone the repository:
git clone https://github.com/xinnan-tech/xiaozhi-esp32-server.git - Install dependencies:
npm install - Configure your environment variables in
.envfile - 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"]
}
}
}