Skip to main content
Glama
rokibul-mist

rhino-mcp

by rokibul-mist

rhino_cmd_render_to_file

Render the Rhino scene to a file. Specify output filename, width, and height to save the result to D:/RhinoFiles/

Instructions

    Render the scene and save the result to a file.
    
    Args:
    file_name: Output filename (saved to D:/RhinoFiles/).
    width: Render width in pixels.
    height: Render height in pixels.
    

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
widthNo
heightNo
file_nameNorender.png

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.1/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of disclosing behavior. It reveals the output location (D:/RhinoFiles/) but does not explain what 'the scene' is, whether it uses the current viewport, whether an existing file is overwritten, or whether the operation modifies the document. These are important behavioral gaps for a file-producing tool.

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 short and front-loaded with the key purpose. The Args list is minimal and adds semantic context. No waste, though a one-line example of the expected file path could make it even clearer.

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?

For a simple three-parameter tool, the description is nearly sufficient, and the output schema covers return values. But it leaves ambiguities: which viewport/scene is rendered, whether render settings are read from the document, and how the file path interacts with the working directory. Given the existence of near-identical siblings, more context would help.

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?

Schema description coverage is 0%, so the description must compensate. It adds meaning to each parameter: file_name is the output filename saved to D:/RhinoFiles/, width and height are in pixels. This goes beyond the bare schema titles and gives the agent usable semantics.

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 clear verb and resource: 'Render the scene and save the result to a file.' This identifies the tool as a render-to-file operation. However, it does not differentiate itself from the sibling rhino_render_to_file or other rendering tools, so it loses one point.

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 instead of the many related siblings such as rhino_render_to_file, rhino_render_preview, or rhino_render_setup. The description only explains the action, not the selection criteria or any prerequisites.

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