MCP Catalogs
Home

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
Score8537
Official
Categories
AI / LLM ToolsBrowser AutomationFile System
AI / LLM ToolsDeveloper ToolsOther
LanguagePythonPython
Last commit2 mo ago12 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

  1. Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server
  1. Install dependencies:
pip install -e .
  1. For Claude Desktop integration, add to your claude_desktop_config.json:
{
  "mcpServers": {
    "ultimate-mcp": {
      "command": "python",
      "args": ["-m", "ultimate_mcp_server"],
      "env": {
        "PYTHONPATH": "."
      }
    }
  }
}
  1. Run the server:
python -m ultimate_mcp_server

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.