Skip to main content
Glama

chaos_configure_geometry_collection

Set up a Chaos Geometry Collection actor for destructible environments by enabling physics, damage thresholds, clustering, and collision notifications.

Instructions

Configure a Geometry Collection component for Chaos destruction.

KB: see knowledge_base/26_CHAOS_PHYSICS_AND_DESTRUCTION.md#mcp-chaos-and-cloth-tools Example: chaos_configure_geometry_collection(actor_name="GC_Barrier_A", simulate_physics=True, notify_breaks=True, damage_thresholds=[500000, 50000, 5000])

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
actor_nameYes
solver_actorNo
notify_breaksNo
gravity_enabledNo
simulate_physicsNo
damage_thresholdsNo
enable_clusteringNo
max_cluster_levelNo
notify_collisionsNo
cluster_group_indexNo
max_simulated_levelNo
enable_damage_from_collisionNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.7/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden. 'Configure' implies mutation, but the description does not disclose side effects, whether an existing actor is required, whether runtime settings persist, or what happens when parameters are omitted. The example offers some behavioral hints but leaves major traits undisclosed.

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, and the example is actionable without bloating the text. A little more structure would help, but overall it is scannable and efficient.

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?

Despite high parameter count and zero annotation coverage, the description provides only a minimal definition and partial example. It lacks parameter semantics, behavioral details, and usage context, making it insufficient for reliable tool selection and invocation, especially among many Chaos and configuration siblings.

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

Parameters2/5

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

Schema description coverage is 0% with 12 parameters, so the description must compensate. The example clarifies simulate_physics, notify_breaks, and damage_thresholds, but the remaining nine parameters—such as solver_actor, enable_clustering, max_cluster_level, and notify_collisions—are left entirely without semantic explanation.

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 clearly states the tool configures a Geometry Collection component for Chaos destruction, which is a specific verb and resource. It separates itself from similar Chaos tools like chaos_configure_solver_actor and chaos_configure_cloth_component, though it does not explicitly distinguish itself from the sibling inspect tool chaos_inspect_geometry_collection.

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?

There is no guidance on when to use this tool versus alternatives like chaos_inspect_geometry_collection or other Chaos configuration tools. The example demonstrates a call, but no context is given for prerequisites, exclusions, or selection criteria.

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

Deploy Server

Other Tools