mcp-server-chart vs unitree-go2-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | unitree-go2-mcp-server by lpigeon | |
|---|---|---|
| Stars | ★ 4,068 | ★ 78 |
| 30d uses | 10,239 | — |
| Score | 84 | 37 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsOther |
| Language | TypeScript | Python |
| Last commit | this month | 12 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
unitree-go2-mcp-server · Summary
MCP server that translates natural language commands to ROS2 instructions for controlling Unitree Go2 robot.
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
unitree-go2-mcp-server · Use cases
- Controlling a Unitree Go2 robot through natural language commands
- Implementing obstacle avoidance and navigation behaviors
- Creating human-robot interaction scenarios with contextual understanding
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"]
}
}
}unitree-go2-mcp-server · Install
Installation
- Setup
unitree_ros2environment (follow instructions up to 'Step 2: Connect and test' from https://github.com/unitreerobotics/unitree_ros2)
- Clone this repository:
git clone https://github.com/lpigeon/unitree-go2-mcp-server.git
cd unitree-go2-mcp-server- Install
uv:
curl -LsSf https://astral.sh/uv/install.sh | sh- Configure MCP server by adding to mcp.json:
{
"mcpServers": {
"unitree-go2-mcp-server": {
"command": "uv",
"args": [
"--directory",
"/ABSOLUTE/PATH/TO/PARENT/FOLDER/unitree-go2-mcp-server",
"run",
"server.py"
]
}
}
}- Set environment variables in server.py (UNITREE_ROS2_SETUP_SH_PATH, LOCAL_IP, etc.)