join_objects
Merge multiple mesh objects into a single target object, defaulting to the first selected object, to combine geometry in Blender.
Instructions
合并多个网格对象到 target(默认第一个)。
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| target | No | ||
| objects | Yes |
Merge multiple mesh objects into a single target object, defaulting to the first selected object, to combine geometry in Blender.
合并多个网格对象到 target(默认第一个)。
| Name | Required | Description | Default |
|---|---|---|---|
| target | No | ||
| objects | Yes |
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 behavioral disclosure. It implies a mutating operation but does not state whether source objects are deleted, whether the operation is reversible, or what happens to the target's existing geometry. This is a significant gap for a merge 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 a single sentence, efficiently front-loading the core action and the default behavior. It wastes no words, though it is arguably under-specified for a tool with this complexity.
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 mutating tool with no annotations, no output schema, and two parameters, this description is severely incomplete. It fails to explain the fate of merged objects, any side effects, or what the result will be, leaving an agent unable to predict the tool's impact.
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 description coverage is 0%, so the description must compensate. It clarifies that 'target' defaults to the first object, but does not explain the meaning of 'objects' or its type variations (array, string, or object). The description adds minimal semantic value beyond what the schema already shows.
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 verb (merge) and resource (multiple mesh objects into a target), and explicitly mentions the default target being the first object. It does not differentiate from siblings like apply_modifier or mesh_cleanup, but the core action is unambiguous.
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 given on when to use this tool versus alternatives such as apply_modifier or delete_object. There are no conditions, prerequisites, or exclusions mentioned, leaving the agent to infer appropriate usage from the name alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.