Skip to main content
Glama
A-to-PC

blender-lab-mcp-client

by A-to-PC

blender_render_animation

Render Blender animations with configurable output path, frame range, and engine. Use bridge for live sessions or headless with a blend file for background rendering.

Instructions

Render an animation. Optionally set output path, frame range, and render engine. Use transport='bridge' for the live Blender add-on session, or transport='headless' with a blend_file to render in a separate background Blender process.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
engineNo
frame_endNo
transportNobridge
blend_fileNo
frame_startNo
output_pathNo//render_
factory_startupNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.6/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the burden. It discloses the two transport modes and their implications (live add-on session vs separate background process), which is useful behavioral context. However, it doesn't mention whether rendering is blocking or async, how long it might take, or what the output schema contains.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences with no fluff. The first sentence states the core action and optional parameters; the second provides the key transport decision. It's front-loaded with the action and scoped efficiently.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool has 7 parameters, 0% schema coverage, and no annotations, so the description must do heavy lifting. It covers the main parameters and the transport modes, but doesn't explain factory_startup, the meaning of the default output_path '//render_', or what the output schema contains. For a rendering tool that may run long jobs, more context about blocking behavior would help.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate. It mentions output path, frame range, and render engine, which maps to output_path, frame_start/frame_end, and engine parameters. However, it doesn't explain transport, blend_file, or factory_startup beyond the transport mention. The description adds some meaning but leaves several parameters unexplained.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool renders an animation, with optional output path, frame range, and render engine. It distinguishes itself from blender_render_still by specifying 'animation' as the resource, though it doesn't explicitly name the sibling.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides explicit guidance on when to use transport='bridge' vs transport='headless', which is a key usage decision. It doesn't explicitly state when to use this over blender_render_still, but the animation vs still distinction is implied by the tool name and description.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.