Skip to main content
Glama
rokibul-mist

rhino-mcp

by rokibul-mist

rhino_save_copy

Save a copy of the current Rhino document to a specified filename or folder while preserving the active file path. Create backups or alternate versions without changing the working file.

Instructions

    Save a copy of the current document without changing the active file path.
    
    Args:
    controller: RhinoController instance.
    file_name: Desired filename or full path for the copy.
    folder: Optional folder override.
    
    Returns:
    Dict with command result.
    

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
folderNo
file_nameYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.3/5.0
Behavior3/5

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

With no annotations, the description carries the behavioral disclosure burden. It does mention the important side-effect of not changing the active file path, but it does not explain behavior around overwriting, file extension handling, or the structure of the returned command result.

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 concise and front-loaded, with the core purpose stated immediately and parameter explanations kept brief. No redundant or filler content is present.

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?

The description covers the essential invocation context, including the optional folder and the return type ('Dict with command result'). Since an output schema exists, the lack of detailed return field explanations is acceptable.

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

Parameters5/5

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

Each parameter is described beyond a bare name: controller is identified as the Rhino instance, file_name as the desired filename or path, and folder as an optional override. Since the schema has no parameter descriptions, the tool description fully compensates.

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 ('Save a copy'), the target ('current document'), and the key distinction ('without changing the active file path'). This effectively differentiates it from related tools like rhino_save and rhino_save_as.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives clear context for when to use the tool: when a copy is needed while preserving the current file path. It does not explicitly name alternatives, but the side-effect constraint provides practical usage guidance.

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