Skip to main content
Glama
vino3dx
by vino3dx

constraint_position

Destructive

Add a Position constraint to make objects follow a target's position, with optional weighted blending for multiple targets.

Instructions

给对象加 Position 约束,使其跟随 target 的位置(可多个目标加权混合)。 [English] Add a Position constraint so the object follows target's position (multiple targets can be blended by weight).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
targetYes跟随的目标对象名。 | Followed target object name.
weightNo目标权重(0-100,UI 同款),默认 100。 | Target weight (0-100, like UI), default 100.
objectsNo被约束的对象名列表;省略则用当前选择。 | Constrained objects; omit for the current selection.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.5/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=false and destructiveHint=true, so the mutating nature of the operation is known. The description adds a useful behavioral detail—multi-target weighted blending—but it does not disclose side effects on existing transforms, the constraint stack, or reversibility beyond what 'Add' implies.

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?

Two compact parallel sentences in Chinese and English, with the action front-loaded and no filler. The bilingual duplication is intentional and does not add meaningful bloat.

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

Completeness3/5

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

The core invocation is clear: a required target, optional weight, and optional object list covered by both description and schema. However, the stated multi-target weighted blending is not fully supported by the schema's single 'target' string and single 'weight' number, leaving a gap that an agent must resolve before calling the tool correctly.

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 description coverage is 100%, so all three parameters are already documented. The description reinforces that 'target' is followed and 'weight' controls blending, but it does not clarify how multiple targets are encoded or whether the single 'weight' applies to all targets, leaving the multi-target capability ambiguous.

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 names a specific verb ('Add'), a specific resource ('Position constraint'), and the outcome ('follows target's position'), with an optional multi-target weighted blend. It clearly identifies this as the position variant among the constraint_* sibling tools, though it does not explicitly contrast those siblings.

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

Usage Guidelines3/5

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

Usage is implied rather than explicit: use this when an object should follow a target's position, possibly with weighted multi-target blending. The description gives no explicit when-not-to-use guidance and does not mention alternatives such as constraint_orientation, constraint_path, or constraint_link, which would help route among the constraint siblings.

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