§ Claude Code
Claude Code + ROBOT.md
Connect Claude Code to a ROBOT.md manifest so it can describe and safely operate your robot.
1. Install
Three commands. Each is copy-able.
# add the MCP server
claude mcp add robot-md npx -y robot-md-mcp
# verify it registered
claude mcp list
# in a Claude session, ask:
> read my ROBOT.md and describe the robot
2. First conversation
An example transcript with Claude reading your manifest:
user: read my ROBOT.md
claude: I see a ROBOT.md describing a 5-DOF arm.
Capabilities: pick, place, calibrate.
Safety: collision_check required before pick.
3. Skills walkthrough
The cookbook walks an agent through discovering, installing, and verifying capabilities end-to-end.
4. Gateway integration
For physical actuation, add robot-md-gateway (Layer 3). The gateway enforces the safety contract declared in your manifest before any actuator call.
5. Troubleshooting
No ROBOT.md found- The MCP server walks the working directory upward. Ensure your CWD is at or below the robot project root.
- MCP not registered
- Re-run
claude mcp add robot-md npx -y robot-md-mcpand confirm withclaude mcp list. - Gateway connection refused
- The gateway is a separate daemon; start it before invoking actuator capabilities.