Skip to main content
Glama

blender_render

Idempotent

Render Blender scenes as still PNG images or MP4 animations, returning validated relative paths and render statistics for easy integration.

Instructions

Render a still PNG or an animation MP4 under CODEX3D_ARTIFACT_ROOT. Returns only validated relative paths and render statistics; still PNG may also be returned as MCP image content.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
kindYes
pathYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.2/5.0
Behavior4/5

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

Beyond the annotations, the description discloses the output contract: only validated relative paths and render statistics are returned, and still PNGs may additionally be delivered as MCP image content. It does not mention render cost or file overwrite behavior, but annotations already cover idempotency and non-destructiveness.

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

Conciseness5/5

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

Two sentences, no filler, with the core behavior and return contract front-loaded. Every clause adds useful information that is not already present in the annotations or schema.

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

Completeness4/5

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

Given the sparse schema and no output schema, the description adequately covers output formats, destination root, and return value shape. It omits execution prerequisites and explicit file-writing side effects, but for a two-parameter render tool the essential guidance is present.

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

Parameters4/5

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

The schema has 0% description coverage, so the description must compensate. It maps 'kind' to still PNG versus animation MP4 and ties 'path' to a relative location under CODEX3D_ARTIFACT_ROOT. It does not explicitly state the expected file extension or whether path refers to the output file, but the meaning is reasonably inferable.

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

Purpose5/5

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

The description names a specific verb ('Render'), the target resource ('Blender scene'), and the exact output formats ('PNG' and 'MP4'), plus the artifact root. This clearly separates blender_render from sibling tools like blender_inspect_scene or blender_create_snapshot.

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

Usage Guidelines3/5

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

The purpose implies when to use it—when a still or animation render is needed—but there is no explicit when-not-to-use guidance or mention of alternatives. The sibling tool list is not leveraged to route the agent away from similar tools.

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