mcp-server-chart vs xiaozhi-esp32-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | xiaozhi-esp32-server by xinnan-tech | |
|---|---|---|
| Stars | ★ 4,068 | ★ 9,554 |
| 30d uses | 10,239 | — |
| Score | 84 | 58 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsCommunicationAI / LLM Tools |
| Language | TypeScript | JavaScript |
| Last commit | this month | this month |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
xiaozhi-esp32-server · Summary
MCP server for ESP32 device management with voice recognition, MQTT, and multi-language support.
mcp-server-chart · Use cases
- Data analysts creating visual reports from datasets
- AI assistants generating custom charts based on user requests
- Web applications embedding visualization capabilities via HTTP API
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
mcp-server-chart · Install
Installation
Install globally:
npm install -g @antv/mcp-server-chartFor Desktop Apps (e.g., Claude Desktop, VSCode):
{
"mcpServers": {
"mcp-server-chart": {
"command": "npx",
"args": ["-y", "@antv/mcp-server-chart"]
}
}
}For Windows:
{
"mcpServers": {
"mcp-server-chart": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@antv/mcp-server-chart"]
}
}
}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"]
}
}
}