delete_object
Deletes specified objects from the Blender scene, with an option to also remove their children.
Instructions
删除对象(名字列表或过滤器),可连带子物体。
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| objects | Yes | ||
| delete_children | No |
Deletes specified objects from the Blender scene, with an option to also remove their children.
删除对象(名字列表或过滤器),可连带子物体。
| Name | Required | Description | Default |
|---|---|---|---|
| objects | Yes | ||
| delete_children | No |
Changes observed during successful MCP inspections.
v0.1.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description bears full responsibility. It mentions deletion and optional child deletion but does not disclose potential side effects like irreversibility, impact on references, or confirmation requirements.
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, concise sentence that leads with the action and includes all essential information without unnecessary detail.
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?
The description is sufficient for a simple delete operation, covering the main actions and parameter semantics. However, it does not mention return values, error handling, or effects on related objects, which would enhance completeness.
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?
The description adds significant meaning to the 'objects' parameter by clarifying it can be a name list or filter, and explains 'delete_children' as deleting child objects. This fully covers the schema's vague parameter definitions.
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 clearly states that the tool deletes objects by name list or filter, with optional child deletion. It is specific and distinguishes from siblings like batch_delete or delete_material.
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?
The description implies usage for deleting objects but does not explicitly compare to similar tools like batch_delete or provide conditions for when to use this tool instead. No guidance on filter syntax is given.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.