Skip to main content
Glama

export_model

Export 3D scenes to glb, gltf, fbx, obj, or Alembic. Use Alembic to preserve baked water and physics animations for other applications.

Instructions

Export to glb/gltf/fbx/obj, or .abc (Alembic) which also carries the animated water surface. 장면을 내보낸다. .abc 로 하면 물 표면과 조각 움직임이 프레임마다 구워져 다른 프로그램에서 그대로 보인다. bake_physics=True 면 조각 물리를 키프레임으로 굽는다(되돌릴 수 없으니 먼저 snapshot). 연기(볼륨)는 어떤 형식으로도 나가지 않는다.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYes
namesNo
bake_physicsNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.6.0

TDQS

A4.3/5.0
Behavior5/5

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

With no annotations provided, the description carries the full behavioral burden, and it does so well: it discloses that .abc bakes water and piece motion per frame, that bake_physics bakes piece physics to keyframes irreversibly, and that smoke/volume is not exported in any format. These are non-obvious side effects and limits an agent needs to know.

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?

The description is reasonably short and front-loads the supported formats in the first sentence. However, there is some redundancy between the English '.abc also carries the animated water surface' and the Korean sentence restating that water and piece motion are baked, and the second sentence partly repeats the first.

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 tool with three parameters and no annotations, the description covers the important behavioral nuances, irreversible baking, and the smoke limitation. The main gap is the undocumented names parameter, but because names is optional and the output schema exists, the definition is otherwise sufficient for correct invocation.

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 richly explains bake_physics and implies that the path extension selects the format, but it does not explain the optional names parameter at all. The required path is intuitive, but one of the three parameters remains semantically opaque.

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 ('Export'), the resource (scene/model), and concrete target formats (glb/gltf/fbx/obj, .abc). It clearly distinguishes this from sibling tools like import_model or render_video by focusing on file-format export.

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 gives clear conditions for choosing .abc when animated water surface or baked piece motion is needed, warns that bake_physics is irreversible and recommends snapshot first, and explicitly states that smoke/volume is never exported. It does not name alternative sibling tools for those exclusions, but the guidance is concrete and actionable.

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