MCP Catalogs
Home

unitree-go2-mcp-server vs filesystem

Side-by-side comparison to help you pick between these two MCP servers.

unitree-go2-mcp-server
by lpigeon
filesystem
by modelcontextprotocol
Stars★ 78★ 85,748
30d uses
Score3777
Official
Categories
AI / LLM ToolsDeveloper ToolsOther
File SystemDeveloper ToolsProductivity
LanguagePythonTypeScript
Last commit12 mo agothis month

unitree-go2-mcp-server · Summary

MCP server that translates natural language commands to ROS2 instructions for controlling Unitree Go2 robot.

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

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

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

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.)

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

Comparison generated from public README + GitHub signals. Last updated automatically.