assign_action
Assign an action to a Blender object, creating a new action if none is specified.
Instructions
给对象指定动作(省略则新建)。
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| action | No | ||
| object | Yes |
Assign an action to a Blender object, creating a new action if none is specified.
给对象指定动作(省略则新建)。
| Name | Required | Description | Default |
|---|---|---|---|
| action | No | ||
| object | 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, the description bears the full burden. It mentions the 'create new' behavior but does not disclose side effects, reversibility, permissions, or what happens to existing actions. This is minimal and insufficient.
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 with no fluff. It front-loads the main verb and the special case. However, it lacks structure and elaboration.
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 2 parameters, no output schema, and no annotations, this description is severely under-specified. It leaves essential details about what an 'action' is, how it is represented, and expected outcomes entirely unexplained.
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 explain parameters. It only implies that omitting 'action' creates a new one; it does not explain the format or constraints for 'object' or 'action', nor the semantics of 'omit'.
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 ('assign') and resource ('object'), and hints at a special case (omit to create new). However, the term 'action' is ambiguous without context, and it does not differentiate from sibling tools like assign_material or assign_*.
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. It does not specify prerequisites, context, or scenarios where a different tool would be more appropriate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.