Skip to main content
Glama
rokibul-mist

rhino-mcp

by rokibul-mist

rhino_cmd_arc

Create an arc in Rhino by specifying center coordinates, radius, and start/end angles. Ideal for precise angular arc geometry.

Instructions

    Draw an arc by center, radius, and angular span.
    
    Rhino's Arc command (center mode) prompts:
    center -> radius -> start angle -> end angle.
    
    Args:
    controller:   RhinoController instance.
    cx, cy, cz:   Center of the arc circle.
    radius:       Arc radius.
    start_angle:  Starting angle in degrees (measured from +X axis).
    end_angle:    Ending angle in degrees.
    
    Returns:
    Dict with 'status' and 'command' keys.
    

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cxYes
cyYes
czYes
radiusYes
end_angleNo
start_angleNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.6/5.0
Behavior3/5

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

No annotations are provided, so the description carries the behavioral disclosure burden. It does disclose that the tool invokes Rhino's Arc command in center mode and that it returns a dict with 'status' and 'command' keys, which adds useful behavioral context. However, it does not explicitly state whether the command creates geometry in the model, what prerequisites exist (e.g., open Rhino document), or how status values should be interpreted.

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 with the core purpose, followed by a short prompt-flow note, parameter list, and return line. It is mostly efficient, though the separately listed 'controller' argument is unnecessary since the schema does not include it, and the prompt sequence could be integrated into the main explanation.

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 description covers the main operation, parameter meanings, and return shape, which is adequate for a simple drawing tool. However, it lacks usage guidance, side-effect/prerequisite details, and does not clarify how this tool relates to sibling arc commands. Since an output schema exists for return values, the return dict explanation is a minor extra rather than a critical contribution.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 0% schema description coverage, the description compensates well: it explains cx, cy, cz as center coordinates, radius as arc radius, and start/end angles as degrees measured from the +X axis. The only notable issue is that it lists a 'controller' argument that does not appear in the input schema, which could confuse an agent, and it omits units for radius or whether coordinate values should be numeric strings.

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: 'Draw an arc by center, radius, and angular span.' It also identifies the exact Rhino command mode ('Arc command (center mode)') and the interaction sequence, making it clearly distinguishable from circle, ellipse, and other arc-drawing variants.

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?

There is no guidance about when to use this tool versus alternatives like rhino_arc, rhino_circle, or rhino_ellipse. The description explains the command flow but does not give selection criteria, exclusions, or context for choosing this center-radius-angle approach over other arc construction methods.

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

Install Server

Other Tools