unitree-go2-mcp-server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
unitree-go2-mcp-server by lpigeon | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 78 | ★ 85,748 |
| 30d uses | — | — |
| Score | 37 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsOther | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 12 mo ago | this month |
unitree-go2-mcp-server · Summary
MCP server that translates natural language commands to ROS2 instructions for controlling Unitree Go2 robot.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
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
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
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.)
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-everything