Skip to main content
Glama
vino3dx
by vino3dx

rig_create_bone

Destructive

Create a single bone for rigging by specifying root position, direction, length, width, and height. Use it as the base for building a limb with subsequent bone chaining.

Instructions

从根位置沿 direction 方向创建一根骨骼,长度 length、宽 width、高 height。骨骼是绑定之基,先做这根再 rig_create_bone_chain 串成肢体。 [English] Create one bone from a root position along direction, with length, width and height. Bones are the basis of rigging - make one, then chain them with rig_create_bone_chain into a limb.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNo骨骼名。 | Bone name.
widthNo骨骼宽度。 | Bone width.
heightNo骨骼高度。 | Bone height.
lengthNo骨骼长度。 | Bone length.
positionNo根位置 [x,y,z],默认原点。 | Root position [x,y,z], default origin.
directionNo生长方向 [x,y,z],默认 X 轴。 | Growth direction [x,y,z], default X axis.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.9/5.0
Behavior3/5

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

Annotations already mark this as destructive and not read-only, so the mutating nature is known. The description adds that bones are the foundation of rigging and that a single bone is created, but it does not disclose possible side effects such as name conflicts, overwriting, or what happens if no parameters are provided.

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 compact and front-loaded: the first sentence defines the action and parameters, while the second adds useful workflow context. The bilingual repetition is a minor redundancy but not a significant burden.

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 simple creation tool, the description plus schema adequately covers what is created, the key parameters, defaults, and the follow-up tool. No output schema exists, so return-value details are not required; only explicit destructive side-effect details are mildly missing.

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?

Schema coverage is 100%, and the schema already defines each parameter, including defaults for position and direction. The description largely paraphrases these fields without adding units, coordinate-space details, or axis conventions, so it meets the baseline but does not exceed 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 uses a specific action ('创建一根骨骼' / 'Create one bone') and clearly names the resource, root position, direction, and dimensions. It also distinguishes this tool from the sibling rig_create_bone_chain by stating that this creates a single bone before chaining them into a limb.

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 provides a clear workflow: create one bone first, then use rig_create_bone_chain to form a limb. It names the relevant sibling and the ordering, though it does not discuss exclusions or alternative conditions in more depth.

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