Skip to main content
Glama
MaxEllis

orcaslicer-mcp

Rename preset

rename_preset

Rename a user preset by copying it to a new name, selecting the copy, and deleting the original. Leaves the renamed preset active and invalidates the last slice, so re-slice afterwards.

Instructions

Rename a user preset by copying it to new_name, selecting the copy, and deleting the original. Only user presets can be renamed; system presets are read-only.

Because it selects the renamed preset, this leaves it active and discards unsaved config overrides, the same as select_preset, and leaves the last slice invalid, so re-slice afterwards.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
typeYesPreset group: 'print', 'filament', or 'printer'.
new_nameYesNew name for the preset. Should not collide with an existing preset of the same type.
old_nameYesCurrent name of the user preset to rename, as shown by list_presets.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed3 schema fields changedv0.1.10
    • addedInput schema / properties / new_name / description
      Added value: +"New name for the preset. Should not collide with an existing preset of the same type."
    • addedInput schema / properties / old_name / description
      Added value: +"Current name of the user preset to rename, as shown by list_presets."
    • addedInput schema / properties / type / description
      Added value: +"Preset group: 'print', 'filament', or 'printer'."
  2. First observedv0.1.8

TDQS

A4.5/5.0
Behavior5/5

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

The annotations only indicate readOnlyHint=false and destructiveHint=false, but the description goes much further: it reveals the copy-then-delete sequence, that the renamed preset becomes active, that unsaved config overrides are discarded, and that the slice becomes invalid requiring re-slice. This is exactly the kind of behavioral context that annotations cannot convey.

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 purposeful paragraphs: the first gives the core mechanism and limitation, the second details side effects. Every sentence adds unique, actionable information without fluff.

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

Completeness5/5

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

Given the rich schema (100% coverage) and annotations, the description covers the full behavioral picture, including constraints and post-conditions. There is no output schema, so return-value details are not expected. An agent has everything needed to decide when and how to invoke this tool and what to expect afterward.

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?

All three parameters already have descriptive text in the schema (100% coverage), so the description does not need to add parameter meaning. It does not, but the schema alone is sufficient for understanding old_name, new_name, and type.

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 specific operation: renaming a user preset via copy, select, and delete. This distinguishes it from related symbols like delete_preset, save_preset, and select_preset by naming the exact mechanism used.

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?

It explicitly states when the tool is applicable (user presets only) and when it is not (system presets are read-only). It also compares behavior to select_preset, giving context for expected side effects, though it stops short of naming alternative tools or explicitly saying 'use X instead.'

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