Skip to main content
Glama

set_curve_points

Set control point positions on a spline curve, including handles for Bezier or weights for NURBS/Poly.

Instructions

Set control point positions on a spline. Each entry: {co: [x,y,z], handle_left: [x,y,z], handle_right: [x,y,z]} for Bezier, or {co: [x,y,z,w]} for NURBS/Poly.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
objectYes
pointsYes
spline_indexYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0+hardened.2

TDQS

C2.9/5.0
Behavior2/5

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

No annotations are provided, so the description must disclose behavior. It only states 'Set control point positions' without mentioning whether it replaces existing points, whether the spline index is zero-based, whether handles are optional for Bezier, or what coordinate system is used. This leaves critical behavior to guesswork.

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 two sentences with no filler: the purpose is first, followed by a compact data format specification. Every phrase earns its place.

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?

With three required parameters and no annotations, the description leaves out the meaning of 'object' and 'spline_index', and does not state whether this operation replaces or edits existing control points. It also lacks information about the output, though an output schema exists. The tool is incomplete for an agent to use confidently.

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 explicitly documents the structure of the 'points' parameter for Bezier and NURBS/Poly entries, which adds meaning beyond the empty schema. However, it does not explain the 'object' or 'spline_index' parameters, so the compensation is only partial for the 0% schema coverage.

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?

States a specific action ('Set control point positions') on a specific resource ('a spline'), and the entry format distinguishes it from generic curve property setters. Though it doesn't name an alternative sibling, the subject matter is unique enough to identify the tool's purpose.

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?

Gives no guidance on when to use this tool vs alternatives like set_curve_property. The description only says what it does, not which situations call for it, nor any prerequisites or exclusions.

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