unitree-sdk2-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@unitree-sdk2-mcpstand up"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
unitree-sdk2-mcp
π English | δΈζ
ROSClaw MCP Server for Unitree Robots via DDS protocol.
Supports: G1, Go2, Go2w, H1, H2, B2, B2w, A2, R1
Part of the ROSClaw Embodied Intelligence Operating System.
Overview
This MCP server enables LLM agents (Claude, GPT-4, etc.) to control any Unitree robot through the Model Context Protocol. It communicates with the robot using DDS (Data Distribution Service) β the same protocol used by Unitree's official SDK.
LLM Agent ββMCPβββΊ unitree-sdk2-mcp ββDDSβββΊ Unitree RobotRelated MCP server: bumi-mcp
Supported Robots
Model | Type | DOF | Features | Weight | Battery |
G1 | Humanoid | 23 | Walking, Arm Control | ~35kg | 2.5h |
Go2 | Quadruped | 12 | Trotting, Galloping | ~15kg | 2.0h |
Go2w | Quadruped+Wheels | 12 | Hybrid Locomotion | ~16kg | 2.0h |
H1 | Humanoid | 20 | Walking, Arm Control | ~47kg | 2.0h |
H2 | Humanoid | 20 | Walking, Arm Control | ~45kg | 2.5h |
B2 | Quadruped | 12 | Industrial, Heavy Payload | ~60kg | 4.0h |
B2w | Quadruped+Wheels | 12 | Industrial+Wheels | ~62kg | 4.0h |
A2 | Quadruped | 12 | Agile, Education | ~15kg | 1.5h |
R1 | Wheeled | 4 | Navigation, Delivery | ~25kg | 3.0h |
SDK Information
Property | Value |
SDK Name | unitree_sdk2 |
SDK Version | 2.1.0+ |
Protocol | DDS (Data Distribution Service) |
Source Repository | |
Documentation | |
License | BSD-3-Clause |
Generated | 2026-04-15 |
Features
Multi-Robot Support: Control any Unitree robot with unified interface
Dynamic Configuration: Automatic robot type detection and configuration
High-Level Actions: Stand, sit, walk, wave (robot-dependent)
Safety Guards: Joint limits enforced before every command
Real-time State: Battery, mode, joint positions, IMU at 100Hz
DDS Protocol: CycloneDDS / FastDDS compatible
Async Design: Non-blocking MCP tools with background state thread
Installation
# Clone
git clone https://github.com/ros-claw/unitree-sdk2-mcp.git
cd unitree-sdk2-mcp
# Install with uv (recommended)
uv venv --python python3.10
source .venv/bin/activate
uv pip install -e .
# Or with pip
pip install -e .Dependencies
# Required: Unitree SDK2
# Download from: https://github.com/unitreerobotics/unitree_sdk2
# DDS Middleware (choose one)
pip install cyclonedds # or fastddsQuick Start
Run as MCP Server
# stdio transport (for Claude Desktop / MCP clients)
python src/unitree_sdk2_mcp_server.py
# Or using the installed entry point
unitree-sdk2-mcp
# Legacy alias (backward compatible)
rosclaw-g1-mcpConnect to a Robot
# First, list available robots
list_robots()
# Get robot info
get_robot_info(robot_id="g1")
# Connect
connect_robot(robot_id="g1", domain_id=0)
# Or connect to Go2
connect_robot(robot_id="go2", domain_id=0)Claude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"unitree-sdk2": {
"command": "python",
"args": ["/path/to/unitree-sdk2-mcp/src/unitree_sdk2_mcp_server.py"],
"transportType": "stdio",
"description": "Unitree Multi-Robot via DDS",
"sdk_version": "2.1.0",
"sdk_source": "https://github.com/unitreerobotics/unitree_sdk2"
}
}
}MCP Inspector (Testing)
mcp dev src/unitree_sdk2_mcp_server.pyAvailable Tools
Multi-Robot Tools
Tool | Description |
| List all supported Unitree robots |
| Get configuration for specific robot |
| Connect to a robot (specify robot_id) |
| Disconnect from a robot |
Control Tools
Tool | Description | Supported Robots |
| Command robot to stand up | G1, H1, H2, Go2, B2, A2 |
| Command robot to sit down/stop | All |
| Walk with linear/angular velocity | G1, Go2, H1, H2, B2, A2 |
| Move a single joint to target angle | All with joints |
| Move multiple joints simultaneously | All with joints |
| Stop and hold current position | All |
| Emergency halt (use with caution!) | All |
| Perform waving gesture | G1, H1, H2 |
Available Resources
Resource | Description |
| Battery, mode, joint positions |
| Joint limits for all joints |
| All active DDS connections |
Robot Configuration
Humanoid Robots (G1, H1, H2)
Joint Structure:
Left Leg: left_hip_yaw, left_hip_roll, left_hip_pitch, left_knee, left_ankle
Right Leg: right_hip_yaw, right_hip_roll, right_hip_pitch, right_knee, right_ankle
Waist: waist_yaw, waist_roll, waist_pitch (G1: 3 DOF, H1/H2: 1 DOF)
Left Arm: left_shoulder_pitch, left_shoulder_roll, left_shoulder_yaw, left_elbow
Right Arm: right_shoulder_pitch, right_shoulder_roll, right_shoulder_yaw, right_elbowG1 Joint Limits:
Joint | Range (rad) |
left_hip_yaw | [-2.35, 2.35] |
left_hip_roll | [-0.78, 0.78] |
left_hip_pitch | [-2.5, 2.5] |
left_knee | [-0.5, 2.5] |
left_ankle | [-1.0, 1.0] |
right_hip_yaw | [-2.35, 2.35] |
right_hip_roll | [-0.78, 0.78] |
right_hip_pitch | [-2.5, 2.5] |
right_knee | [-0.5, 2.5] |
right_ankle | [-1.0, 1.0] |
waist_yaw | [-2.5, 2.5] |
waist_roll | [-0.5, 0.5] |
waist_pitch | [-1.0, 1.0] |
left_shoulder_pitch | [-3.14, 3.14] |
left_shoulder_roll | [-0.5, 3.5] |
left_shoulder_yaw | [-2.0, 2.0] |
left_elbow | [-1.5, 2.0] |
right_shoulder_pitch | [-3.14, 3.14] |
right_shoulder_roll | [-3.5, 0.5] |
right_shoulder_yaw | [-2.0, 2.0] |
right_elbow | [-1.5, 2.0] |
Quadruped Robots (Go2, Go2w, B2, B2w, A2)
Joint Structure:
Front Left: front_left_hip, front_left_thigh, front_left_calf
Front Right: front_right_hip, front_right_thigh, front_right_calf
Rear Left: rear_left_hip, rear_left_thigh, rear_left_calf
Rear Right: rear_right_hip, rear_right_thigh, rear_right_calfGo2 Joint Limits:
Joint | Range (rad) |
front_left_hip | [-0.87, 0.87] |
front_left_thigh | [-0.52, 2.97] |
front_left_calf | [-2.76, -0.52] |
... (similar for other legs) |
Safety Information
WARNING: This MCP server controls physical robots. Improper use can cause:
Equipment damage
Personal injury
Property damage
Safety Features
Feature | Description |
Joint Limits | All commands validated against hardware limits per robot type |
Velocity Limits | Enforced per robot configuration |
Emergency Stop |
|
Safety Levels
Level | Color | Description |
CRITICAL | π΄ | Immediate danger (falling, collision) |
HIGH | π | Potential hardware damage |
MEDIUM | π‘ | Operational issue |
LOW | π’ | Informational |
Emergency Procedures
Immediate Stop: Use
emergency_stop(robot_id)or press physical E-stopPower Off: Disconnect battery if safe
Check Status: Use
unitree://{robot_id}/statusresource
Error Handling
Error Codes
Code | Name | Severity | Description |
-1 | CONNECTION_FAILED | π error | Failed to connect to DDS domain |
-2 | TIMEOUT | π error | Operation timed out |
-3 | INVALID_PARAMETER | π error | Invalid joint name or value |
-4 | SAFETY_VIOLATION | π΄ critical | Command exceeds joint limits |
-5 | NOT_INITIALIZED | π error | Not connected to robot |
-6 | UNKNOWN_ROBOT | π error | Unsupported robot ID |
Troubleshooting
Issue | Possible Cause | Solution |
Connection failed | Robot powered off | Check battery and power switch |
Connection failed | Wrong DDS domain | Verify domain_id parameter |
Command rejected | Joint limit exceeded | Check robot-specific joint limits |
Slow response | Network latency | Check WiFi/Ethernet connection |
Unknown robot ID | Typo in robot_id | Use |
Architecture
unitree_sdk2_mcp_server.py
βββ SDK_METADATA β SDK version and source info
βββ RobotState β Robot state dataclass (generic)
βββ StateBuffer β Thread-safe ring buffer for DDS data
βββ UnitreeDDSBridge β DDS communication bridge
β βββ connect() β Initialize DDS participant
β βββ _dds_listener() β Background thread at 100Hz
β βββ publish_command() β Send /lowcmd
βββ robot_configs.py β Configuration for all 9 robots
β βββ G1_CONFIG β G1 humanoid (23 DOF)
β βββ GO2_CONFIG β Go2 quadruped (12 DOF)
β βββ H1_CONFIG β H1 humanoid (20 DOF)
β βββ B2_CONFIG β B2 industrial quadruped
β βββ A2_CONFIG β A2 agile quadruped
β βββ R1_CONFIG β R1 wheeled robot
βββ MCP Tools β FastMCP tool definitionsDDS Topics
Topic | Direction | Description |
| Subscribe | Robot state (joints, IMU, battery) |
| Publish | Robot commands (joint targets, mode) |
| Subscribe | Sport mode state |
Dependencies
Python 3.10+
mcp[fastmcp]β MCP frameworkunitree_sdk2β Unitree DDS SDK (install separately from hardware package)cycloneddsorfastddsβ DDS middleware
References
License
MIT License β See LICENSE
Part of ROSClaw
rosclaw β Core framework (see arXiv paper)
unitree-sdk2-mcp β Unitree Multi-Robot (DDS)
rosclaw-ur-ros2-mcp β UR5 arm (ROS2)
rosclaw-gimbal-mcp β GCU Gimbal (Serial)
rosclaw-ur-rtde-mcp β UR5 via RTDE
Generated by ROSClaw SDK-to-MCP Transformer
SDK Version: unitree_sdk2 2.1.0+ | Protocol: DDS | Robots: G1, Go2, Go2w, H1, H2, B2, B2w, A2, R1
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ros-claw/unitree-sdk2-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server