Skip to main content
Glama

geom_apply_displacement

Apply Perlin-noise displacement to a DynamicMesh actor to add procedural surface detail. Specify magnitude, frequency, and seed to control the deformation.

Instructions

Apply Perlin-noise displacement to a DynamicMesh actor.

Args: actor_name: DynamicMesh actor label to mutate. magnitude: Displacement magnitude in centimeters. frequency: Perlin noise frequency. seed: Deterministic random seed. along_normal: Apply displacement along vertex normals.

Returns: Structured JSON with resulting mesh counts.

KB: see knowledge_base/22_GEOMETRY_SCRIPT_AND_MODELING.md#mcp-geometry-tools Example: geom_apply_displacement(actor_name="DM_Rock", magnitude=12, frequency=0.08, seed=7)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
seedNo
frequencyNo
magnitudeNo
actor_nameYes
along_normalNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.5/5.0
Behavior4/5

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

With no annotations, the description carries the behavioral burden. It discloses that the actor is mutated, that the operation is deterministic given a seed, and that it returns structured JSON with resulting mesh counts. It could add more about reversibility or failure conditions, but the key behavioral traits are present.

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

Conciseness5/5

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

The description is well structured with a front-loaded summary followed by compact args, returns, a KB pointer, and an example. Each section earns its place, and the parameter list is appropriately detailed given the lack of schema descriptions.

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

Completeness4/5

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

For a moderately complex mutation tool, the description covers target, parameters, return shape, and usage example. It does not explicitly mention prerequisites or when to prefer alternative geometry tools, but the provided information is sufficient for correct invocation in most cases.

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

Parameters5/5

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

Schema description coverage is 0%, so the description must fully compensate. It does: every parameter is given meaningful semantics, including units for magnitude, the meaning of frequency, the deterministic nature of seed, and the role of along_normal.

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

Purpose5/5

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

The first sentence names a specific verb ('Apply'), a specific algorithm ('Perlin-noise displacement'), and a specific resource ('DynamicMesh actor'). This clearly distinguishes it from sibling geometry tools like geom_extrude and geom_remesh.

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

Usage Guidelines4/5

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

The description makes clear the target type (DynamicMesh actor) and the operation context, and provides an illustrative example. It does not explicitly state when not to use this tool or name alternatives, but the intended usage is clear enough.

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