MCP Catalogs
Home

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 uses10,239
Score8437
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
AI / LLM ToolsDeveloper ToolsOther
LanguageTypeScriptPython
Last committhis month12 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-chart

For 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

  1. Setup unitree_ros2 environment (follow instructions up to 'Step 2: Connect and test' from https://github.com/unitreerobotics/unitree_ros2)
  1. Clone this repository:
git clone https://github.com/lpigeon/unitree-go2-mcp-server.git
cd unitree-go2-mcp-server
  1. Install uv:
curl -LsSf https://astral.sh/uv/install.sh | sh
  1. 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"
            ]
        }
    }
}
  1. Set environment variables in server.py (UNITREE_ROS2_SETUP_SH_PATH, LOCAL_IP, etc.)
Comparison generated from public README + GitHub signals. Last updated automatically.