Skip to main content
Glama

edit_model

Apply atomic batch edits to 3D creature models: set, delete, rename, move, or scale joints, bones, blobs, kits, strokes, and global values. Right-side elements update automatically.

Instructions

Apply a batch of edits atomically. Ops: {"op":"set","kind":"joints|bones|blobs|kits|strokes","name":n,"value":{...}} merge fields, creates if new; a null field removes it {"op":"delete","kind":...,"name":n} {"op":"rename","kind":...,"name":n,"to":m} joint/bone renames update references {"op":"move","joints":[names],"delta":[dx,dy,dz]} shift a group of joints (e.g. a whole leg) {"op":"scale_r","joints":[names],"factor":f} thicken/thin at those joints {"op":"global","value":{"blend":0.04}} Edit only ".L" and centre elements; ".R" follows automatically.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
opsYes
nameYes
noteNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.4/5.0
Behavior5/5

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

With no annotations, the description carries the full burden and does so thoroughly: atomicity, merge/create semantics, null-field removal, delete/rename/move/scale behaviors, reference updates on rename, and automatic .R propagation are all disclosed.

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 definition is dense but compact: a one-line summary, then a terse op list where each line adds a distinct semantic. There is no filler and the most important framing (atomic batch) is front-loaded.

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?

The op vocabulary is exceptionally complete for a tool with no output schema and no annotations. The main gaps are the unaddressed top-level name/note parameters and lack of any statement about return values or error behavior, but the core invocation semantics are well covered.

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 description richly documents the nested ops structure, which is critical given the schema's 0% description coverage. However, it never explicitly ties the top-level 'name' parameter to the model being edited, nor explains 'note'; the op-level 'name' field could be confused with it.

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 description opens with a specific verb and resource: 'Apply a batch of edits atomically.' It then enumerates the exact edit operations, making it clear this is the batch mutation tool for models and distinguishing it from read/list/export siblings.

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?

It clearly frames when to use the tool (batch edits that should be atomic) and adds the concrete constraint 'Edit only .L and centre elements; .R follows automatically.' However, it does not explicitly name alternative tools or say when not to use it.

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