Skip to main content
Glama
vino3dx
by vino3dx

create_ngon

Destructive

Creates a regular polygon (NGon) spline from a circumradius and edge count (minimum 3 sides).

Instructions

创建一个正多边形(NGon)样条。radius 为外接圆半径,sides 为边数(至少 3)。 [English] Create a regular polygon (NGon) spline. radius is the circumradius, sides the edge count (>=3).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
toNo结束角(度,Arc)。 | End angle in degrees (Arc).
fromNo起始角(度,Arc)。 | Start angle in degrees (Arc).
nameNo图形名称;省略则自动命名。 | Shape name; auto-generated if omitted.
sizeNo字号(Text,对应 size 属性)。 | Font size (Text, maps to size).
textNo文本内容(Text)。 | Text content (Text).
sidesNo边数,至少 3。 | Edge count, >=3.
turnsNo圈数(Helix)。 | Turns (Helix).
widthNo宽度(Rectangle/Ellipse)。 | Width (Rectangle/Ellipse).
heightNo高度(Helix)。 | Height (Helix).
lengthNo长度(Rectangle/Ellipse)。 | Length (Rectangle/Ellipse).
radiusNo外接圆半径。 | Circumradius.
radius1No第一半径(Donut)。 | First radius (Donut).
radius2No第二半径(Donut)。 | Second radius (Donut).
positionNo位置 [x,y,z]。 | Position [x,y,z].
segmentsNo分段数。 | Segment count.
thicknessNo描边粗细(Text)。 | Stroke thickness (Text).
cornerRadiusNo圆角半径(Rectangle)。 | Corner radius (Rectangle).

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.4/5.0
Behavior2/5

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

Annotations already mark the tool as destructiveHint=true and readOnlyHint=false, but the description adds no behavioral context beyond the bare word 'Create'. It does not explain what is destroyed, whether an existing object is overwritten, or how the spline is inserted into the scene.

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 short, front-loaded, and free of filler. It states the core purpose first and then the two key parameters, making it easy for an agent to parse quickly.

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?

For a tool with 17 parameters and no output schema, this description is too thin. It never explains why the schema contains parameters for Text, Arc, Helix, Donut, and Rectangle, or whether those are accepted and ignored. The destructiveHint annotation is also left unexplained.

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 schema already documents all 17 parameters with descriptions, so the baseline is 3. The description adds no new meaning beyond what the schema states for radius and sides, and it does not clarify which of the many unrelated parameters (Arc, Text, Helix, Donut, Rectangle) should be ignored for an NGon.

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 states a specific verb and resource: 'Create a regular polygon (NGon) spline.' It distinguishes the tool from siblings like create_circle and create_rectangle by addressing the NGon primitive directly.

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?

The usage context is implied: use this when creating a regular polygon spline. However, it does not explicitly say when not to use it or which sibling tools cover other spline shapes, so the agent is left to infer the alternatives.

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