mujoco-arm-mcp

mujoco-arm-mcp

An MCP server that enables LLM agents to control a two-joint MuJoCo robot arm through tools for moving, reading state, and resetting. It deliberately omits inverse kinematics, so the agent must infer joint angles from observations.

Category
访问服务器

README

<div align="center">

🦾 mujoco-arm-mcp

The agent is given no inverse kinematics — only a forward tool. It has to work the answer out.

A two-joint arm in MuJoCo behind an MCP server, so an LLM agent can drive it — and, given a target coordinate, must find the joint angles itself.

<br/>

Python MuJoCo MCP CI License

<br/>

<img src="docs/images/agent-run.gif" alt="The agent probing the arm and reaching both targets" width="880"/>

<sub>Two targets, no inverse kinematics, six tool calls — driven from the SDK with nobody typing.</sub>

</div>


The idea

Giving an agent a robot arm is easy. The interesting question is what you leave out.

This server exposes one way to act — set two joint angles — and one way to perceive — read where the tip ended up. There is no move_to(x, z), no inverse-kinematics solver anywhere in the repository, and the link lengths are never disclosed. So "put the tip at x ≈ −0.50, z ≈ 0.62" has no lookup answer.

What the agent does with that is more interesting than groping around. In the run above it spends its second call on a deliberately orthogonal pose — j1=0, j2=90 — which separates the two links along different axes and exposes both lengths in a single reading, then solves the geometry it just measured. Six calls for two targets, and only one of them is an experiment.


Architecture

flowchart LR
    subgraph D["🎮 &nbsp;drivers"]
        direction TB
        CLI["💬 <b>chat.sh</b><br/><i>Codex CLI · you type</i>"]
        SDK["⚙️ <b>arm_agent.mjs</b><br/><i>Codex SDK · nobody types</i>"]
    end

    MCP["🧩 <b>arm_mcp.py</b><br/>MCP server<br/><i>move_arm · get_state · reset</i>"]

    subgraph SIM["🔬 &nbsp;simulation"]
        direction TB
        VIEW["🪟 <b>viewer_server.py</b><br/><i>MuJoCo window, smooth motion</i>"]
        HEAD["🖩 <b>headless MuJoCo</b><br/><i>fallback, numbers only</i>"]
    end

    CLI -- "stdio MCP" --> MCP
    SDK -- "stdio MCP" --> MCP
    MCP -- "socket :8899 · if running" --> VIEW
    MCP -. "otherwise" .-> HEAD

    style MCP fill:#efe6ff,stroke:#6E56CF
    style SIM fill:#fff4e6,stroke:#FF6B35
    style D fill:#e8f0fe,stroke:#4285f4
    style VIEW fill:#ffe8cc,stroke:#FF6B35

Two processes, not one: macOS requires the GUI to own the main thread, so the viewer cannot live inside the MCP server. They talk over a local socket, and the server works with or without it.


The tools

Tool Signature Returns
move_arm (angle1_deg, angle2_deg) tip position (x, z) after the move
get_state () current joint angles and tip position, without moving
reset () returns to the zero pose

Leaving the solver out is the design. The tool surface decides whether the agent is doing the work or just relaying arguments — a move_to(x, z) tool would make every run one call long and show nothing.


<details> <summary><b>Running it</b></summary>

<br/>

python3 -m venv .venv && source .venv/bin/activate
pip install -r requirements.txt

mjpython viewer_server.py                  # the live window (macOS needs mjpython for the GUI)
python test_client.py                      # protocol check: handshake, list tools, remote call
./chat.sh                                  # Codex CLI, interactive
npm install && node agent/arm_agent.mjs    # Codex SDK — the run in the GIF
mjpython replay_viewer.py                  # replay the last run from trajectory.log

PYTHON=./.venv/bin/python overrides the interpreter passed to the agent. The MCP server is normally launched by the agent over stdio; running arm_mcp.py by hand just leaves it waiting on stdin.

Step by step, including how the GIF was produced, is in docs/running-the-demo.md.

</details>

<details> <summary><b>The recorded run, in full</b></summary>

<br/>

=== Agent driven from code — nobody typing ===

  Task     reach two targets, tolerance 0.05, max 4 moves each
  Targets  (x = -0.50, z = 0.62)  then  (x = 0.62, z = 0.35)
  Given    a forward tool only — no IK, no link lengths

[agent] I'll probe the arm with decisive poses, infer only from the returned
        tip positions, and stay within the four-move limit per target.

   1  get_state
   2  move_arm   j1=    0.0   j2=   90.0

[agent] The probe exposed the two link contributions directly: 0.60 and 0.40.
        I'm using those observations for an exact large correction.

   3  move_arm   j1=  -68.1   j2=   76.2
   4  move_arm   j1=  -76.1   j2=   74.0

[agent] First target met.

  --  reset      ------- target 1 done, swinging back -------
   6  move_arm   j1=   31.5   j2=   84.7

[agent] Second target met. I found them by probing one orthogonal pose,
        inferring both link lengths and the base offset, then solving the
        observed geometry.

And the protocol-level check, python test_client.py:

<img src="docs/images/protocol-test.png" alt="Protocol-level test output" width="720"/>

</details>

<details> <summary><b>Design notes</b></summary>

<br/>

Degrade, don't fail. The server tries the viewer socket with a one-second timeout and falls back to its own MuJoCo instance if nothing answers. The agent never sees the difference, so the window is a debugging convenience rather than a dependency.

Frame the socket messages. Commands are newline-terminated JSON and the reader keeps reading until it sees the newline. TCP does not preserve message boundaries, and "one recv returns one message" is a bug that only shows up under load.

One definition of the robot. The model XML, the forward kinematics and the socket helpers all live in arm_common.py. The XML was duplicated in three files before that; the moment it needed to change, that arrangement stopped working.

Interpolate in the viewer, not in the protocol. The server sends a target; the viewer walks 8% of the remaining distance per frame. Motion looks continuous without any command being about motion.

</details>

<details> <summary><b>Files</b></summary>

<br/>

File Role
arm_common.py model XML, analytic forward kinematics, socket helpers — the single definition
arm_mcp.py the MCP server: three tools, viewer-or-headless routing, trajectory logging
viewer_server.py the MuJoCo window; listens on :8899 and eases toward the target pose
replay_viewer.py replays trajectory.log as one continuous motion
test_client.py protocol-level client: handshake, list tools, remote call
tests/ holds fk() to MuJoCo's numbers and recv_json to its framing promise — what CI runs
chat.sh one command to start a Codex CLI session with the arm attached
agent/arm_agent.mjs the same thing from the Codex SDK, streaming each tool call

</details>


Scope

Deliberately small: two joints, planar motion, no dynamics, no collisions, no gripper. It exists to make one thing easy to look at — an agent closing a loop through tools — not to be a robotics framework.

<div align="center"> <br/>

MIT © kevinave

</div>

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选