Skip to main content
Glama
rokibul-mist

rhino-mcp

by rokibul-mist

rhino_probe_intersection

Read-onlyIdempotent

Cast a ray in Rhino to find exact intersection points on Breps or extrusions, returned sorted by distance from the ray origin.

Instructions

Cast a ray and report intersection points against Breps/Extrusions.

    Returns ``hits`` sorted by distance from the ray origin. Bridge-only —
    rhino3dm has no ray-shoot primitive.
    

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
argsYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.4/5.0
Behavior4/5

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

With readOnlyHint and idempotentHint already present, the description adds useful behavior beyond the annotations: hits are sorted by distance from the ray origin, and the tool only targets Breps/Extrusions. This gives the agent a clearer model of the operation without contradicting the annotations.

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 compact and front-loaded with the action, followed by the key result-ordering behavior and a brief implementation note. Every sentence carries useful information with no filler.

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

Completeness4/5

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

For a read-only probe with an output schema and readOnly/idempotent annotations, the description covers the essential mechanics: ray casting, target geometry, and sorted results. It leaves filtering and cap details to the schema, which is acceptable given the available structured metadata.

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

Parameters2/5

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

The description only obliquely references `ray_origin` and the default target set (`Breps/Extrusions`). It does not explain `doc_id`, `max_hits`, `object_ids`, or the behavior of `ray_direction`, and with schema description coverage reported at 0%, the description fails to compensate for the parameter documentation gap.

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 states a specific verb and resource: cast a ray and report intersection points against Breps/Extrusions. This makes the tool's core function unmistakable and distinguishes it from the many creation/modification tools in the sibling list, though it does not explicitly name an alternative probe tool.

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 on when to use this tool versus alternatives such as surface closest-point, section, or contour probing. The 'Bridge-only' note explains an implementation limitation but does not help an agent choose between this tool and other geometric query tools.

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