export_file
Export Blender scene or selected objects to a specified file path with optional format and export options.
Instructions
导出到文件(同上格式)。objects 省略则导出全部。
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | ||
| format | No | ||
| objects | No | ||
| options | No |
Export Blender scene or selected objects to a specified file path with optional format and export options.
导出到文件(同上格式)。objects 省略则导出全部。
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | ||
| format | No | ||
| objects | No | ||
| options | No |
Changes observed during successful MCP inspections.
v0.1.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of disclosing behavior. It mentions the object-omission behavior but omits any details about file creation, overwriting, side effects, or required permissions for a write operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely short, but it is under-specified rather than effectively concise. The 'same format as above' reference is unhelpful without preceding context.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with 4 parameters, no annotations, and no output schema, this description is completely inadequate. It lacks essential details about format handling, path requirements, and export scope beyond the single objects hint.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, so the description must compensate for all parameters. It explains the 'objects' parameter's behavior but says nothing about 'path', 'format', or 'options', leaving those unexplained.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a verb+resource (export to file) but is vague about what is exported and the 'same format as above' reference is cryptic without context. It does not differentiate from sibling tools like export_for_game, save_blend, or save_image.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
There is no guidance on when to use this tool versus alternatives. The only hint about omitting objects exporting everything is a parameter behavior, not a usage directive.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.