time vs xiaozhi-esp32-server
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | xiaozhi-esp32-server by xinnan-tech | |
|---|---|---|
| Stars | ★ 85,748 | ★ 9,554 |
| 30d uses | — | — |
| Score | 77 | 58 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | Developer ToolsCommunicationAI / LLM Tools |
| Language | TypeScript | JavaScript |
| Last commit | this month | this month |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
xiaozhi-esp32-server · Summary
MCP server for ESP32 device management with voice recognition, MQTT, and multi-language support.
time · Use cases
- Assisting with international meeting scheduling across time zones
- Providing real-time time information for location-based queries
- Enabling time conversion for travel planning and itineraries
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
time · Install
Installation Options
**Using uv (recommended):**
uvx mcp-server-time**Using PIP:**
pip install mcp-server-time
python -m mcp_server_time**Configure for Claude Desktop:**
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}xiaozhi-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"]
}
}
}