ultimate_mcp_server vs unitree-go2-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | unitree-go2-mcp-server by lpigeon | |
|---|---|---|
| Stars | ★ 149 | ★ 78 |
| 30d uses | — | — |
| Score | 85 | 37 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | AI / LLM ToolsDeveloper ToolsOther |
| Language | Python | Python |
| Last commit | 2 mo ago | 12 mo ago |
ultimate_mcp_server · Summary
Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.
unitree-go2-mcp-server · Summary
MCP server that translates natural language commands to ROS2 instructions for controlling Unitree Go2 robot.
ultimate_mcp_server · Use cases
- Complex document processing and analysis with OCR and structured data extraction
- Web automation and research across multiple sites with browser control
- Cost-optimized AI workflows through intelligent task delegation between models
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
ultimate_mcp_server · Install
Installation
- Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- Install dependencies:
pip install -e .- For Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- Run the server:
python -m ultimate_mcp_serverunitree-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.)