blender_batch
Run multiple Blender addon commands in one request to reduce round trips. Each step returns its own result, so failures don't hide successful work.
Instructions
Run many bridge commands in a single round trip.
Each step is {"command": <addon command>, "params": {...}}. Results come
back per step, so one failure does not hide the steps that worked. This is
the fastest way to build a scene, because it collapses dozens of round trips
into one.
Command names are the addon's, not the tool names: add_primitive,
create_mesh, set_transform, assign_material, add_modifier,
validate, geometry, and so on.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| steps | Yes | Ordered steps, each {'command': <name>, 'params': {...}}. Uses addon command names, e.g. 'add_primitive', 'set_transform', 'validate'. | |
| stop_on_error | No | Abort at the first failure instead of continuing. | |
| response_format | No | 'markdown' for readable output, 'json' for raw structured data. | markdown |