mujoco_model_info
Inspect a loaded MuJoCo model's joints, actuators, sensors, bodies, and options to understand limits and layout before choosing control values or interpreting state data.
Instructions
Detailed structure of a loaded model: joint types/ranges, actuator ctrlranges, sensors, bodies, options.
Returns JSON: {session_id, source, sizes: {nq, nv, nu, na, nbody, njnt, ngeom, nsensor, nkey},
options: {timestep, gravity, integrator},
joints: [{name, type, range|null, qpos_adr, dof_adr}],
actuators: [{name, ctrlrange|null, gear}],
sensors: [{name, type, dim}], bodies: [names], keyframes: [names]}.
Use before choosing ctrl values (respect ctrlrange) or interpreting qpos/qvel layout.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| session_id | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |