Skip to main content
Glama
Aitidi
by Aitidi

create_soft_body

Convert a selected object into a soft body to apply realistic physics dynamics for animation and simulation in Cinema 4D.

Instructions

Add soft body dynamics to the specified object.

Args:
    object_name: Name of the object to convert to a soft body

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
object_nameYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.2

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description reveals that the tool mutates an object by adding dynamics, but it does not disclose whether the operation is destructive, whether it overrides existing dynamics, what object types are supported, or what the result looks like. With no annotations available, the description carries the full transparency burden and only partially meets it.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is short and front-loaded, with the operation and target in the first sentence)Skip. There is no filler or redundant restatement, though the sparse Args section is not a structural problem.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With no annotations and only one sentence of context, the definition leaves important operational questions unanswered: whether the operation is reversible, whether it affects existing dynamics, and what error cases exist. It is minimally sufficient for a simple call but not genuinely complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The Args line clarifies that object_name is the object to convert, which adds function to the bare schema property title 'Object Name'. However, it gives no guidance on naming conventions, object references, or what happens if the object does not exist.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific action ('add soft body dynamics') and names the target object, so an agent can tell what the tool does. It does not, however, distinguish itself from closely related sibling tools such as apply_dynamics or modify_object.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided about when to use this tool versus alternatives like apply_dynamics or create_soft_body. The agent must infer placement in a workflow from the tool name alone.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.