Skip to main content
Glama
vino3dx
by vino3dx

render_frames

Destructive

Render a specified list of frame numbers in 3ds Max, saving each frame as a separate file named by its frame index. Use this to render only selected frames instead of a full sequence.

Instructions

渲染一串明确的帧号,每帧一个文件(文件名按帧号编号)。返回每个文件的写入结果。渲染一整批会非常慢,调用会阻塞直到全部完成。 [English] Render an explicit list of frames, one file per frame (numbered by frame index). Returns the write result for each file. A whole batch can take minutes and the call blocks until everything is done.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathNo输出基准路径;省略则写入渲染输出目录。 | Base output path; omit to use the render output folder.
framesYes要渲染的帧号列表。 | List of frame numbers to render.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4/5.0
Behavior4/5

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

Annotations already flag destructiveHint=true and readOnlyHint=false, so the mutation/side-effect profile is known. The description adds valuable behavioral detail beyond that: the call blocks until completion, can take minutes, and produces one written file per frame. It stops short of saying whether existing files are overwritten, but the destructive annotation lowers the burden.

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?

The description is two short bilingual sentences with no filler: it front-loads the purpose, then states return behavior and the blocking/performance warning. Every sentence adds information, and the warning is placed immediately after the core purpose.

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?

For a simple two-parameter tool with full schema coverage and a clear purpose, the description is nearly complete: it covers behavior, return value, output naming, and an important performance caveat. It lacks only an explicit pointer to sibling tools for other rendering workflows, and there is no output schema to elaborate the returned write results.

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 100%, so both 'path' and 'frames' are already documented in the input schema. The description adds some helpful context around output numbering and blocking, but it does not meaningfully explain parameter formats or constraints beyond what the schema provides. Baseline 3 is appropriate.

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 states a specific action ('Render an explicit list of frames'), the exact resource (frame numbers), and the output behavior (one file per frame, numbered by frame index). It also says it returns the write result for each file, which disambiguates it from nearby render tools like render_animation or render_still.

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 description implies when to use it: when the caller has an explicit list of frames rather than a full sequence. It also warns that a whole batch is slow and blocks, which is cautious guidance. However, it never names alternatives or states when not to use this tool, leaving sibling differentiation mostly implicit.

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

Deploy Server

Other Tools