Skip to main content
Glama
hueflowstudio

Hueflow SketchUp MCP

create_circle

Creates a circle in SketchUp by specifying a center point, normal vector, radius, and segment count. Returns the edges forming the circle.

Instructions

Create a circle in SketchUp from a center point, normal vector, and radius. Returns edges forming the circle.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
centerNo[x, y, z] center point (default [0,0,0])
normalNo[x, y, z] normal vector (default [0,0,1] for Z-axis)
radiusYesCircle radius (must be positive)
segmentsNoNumber of segments (default 24, min 3)
layerNo
materialNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.1

TDQS

B3.2/5.0
Behavior2/5

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

No annotations are provided, so the description should disclose behavioral traits. It mentions returning edges but does not explain side effects, undo behavior, or whether it adds geometry to the active model. The description is insufficiently transparent for a creation tool.

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 sentences, no fluff, directly conveys the tool's purpose and output. Efficient and well-structured.

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?

Despite 6 parameters and no output schema, the description is minimal. It lacks usage examples, constraints (e.g., radius must be positive), and details about the return value (edges). More context is needed for an agent to use the tool 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?

Schema description coverage is 67% (4 of 6 parameters have descriptions). The description mentions center, normal, and radius but adds no extra semantics beyond the schema. It does not address undocumented parameters (layer, material). At this coverage level, the description adds minimal value.

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 clearly states the action (create a circle), the resource (in SketchUp), and key inputs (center, normal, radius). It also specifies the output (edges forming the circle), distinguishing it from sibling tools like create_face or create_arc.

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?

No explicit guidance on when to use this tool versus alternatives like create_arc or create_polygon. No prerequisites or context for use are provided.

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