duplicate_object
Duplicate a Blender object with options for shared mesh data and position offset.
Instructions
复制对象;linked=true 共享网格数据;offset 为位置偏移。
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | ||
| linked | No | ||
| offset | No | ||
| new_name | No |
Duplicate a Blender object with options for shared mesh data and position offset.
复制对象;linked=true 共享网格数据;offset 为位置偏移。
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | ||
| linked | No | ||
| offset | No | ||
| new_name | 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, the description must carry the burden of behavioral disclosure. It mentions that linked=true shares mesh data and offset is a position offset, but it doesn't explain what happens to other properties (modifiers, materials), whether the operation is reversible, or what the tool returns. This is minimal disclosure.
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 a single, tightly packed sentence that front-loads the action and key options. It is concise and structured with semicolons, though it sacrifices detail for brevity. It earns its place for the info it provides.
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?
Given the lack of output schema and annotations, the description is incomplete. It doesn't state what the tool returns, how to reference the new object, or whether it copies modifiers/materials. For a duplication operation, this is insufficient for an agent to use it correctly.
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 explain all parameters. It explains linked and offset, but not the required 'name' parameter or 'new_name'. It adds meaning for two parameters but leaves two undocumented, which is a significant gap.
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 clear action, 'duplicate object', and briefly mentions linked and offset, which gives a hint of its scope. It distinguishes it from other object operations like delete_object or set_transform, though it doesn't explicitly name alternatives.
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?
No guidance is provided on when to use this tool versus alternatives. It doesn't mention scenarios or conditions for using linked mode or offset. The description is purely descriptive, not prescriptive.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.