Skip to main content
Glama
MaxEllis

orcaslicer-mcp

Select preset

select_preset

Switches to a named print, filament, or printer preset, discarding unsaved overrides to reset settings to stored values. Re-slice afterwards for valid output.

Instructions

Make the named preset the active one for its group (print, filament, or printer).

Selecting a preset discards unsaved set_config overrides and reverts settings to the preset's stored values, so it is also the canonical way to reset dirty config; it leaves the last slice invalid, so re-slice afterwards. Use list_presets for valid names, and save_preset first if unsaved edits should survive the switch.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesExact name of an existing preset in that group, as returned by list_presets (e.g. '0.20mm Standard'). Unknown names are rejected.
typeYesWhich preset group to switch: 'print' (process/quality), 'filament' (material), or 'printer' (machine).

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed2 schema fields changedv0.1.10
    • addedInput schema / properties / name / description
      Added value: +"Exact name of an existing preset in that group, as returned by list_presets (e.g. '0.20mm Standard'). Unknown names are rejected."
    • addedInput schema / properties / type / description
      Added value: +"Which preset group to switch: 'print' (process/quality), 'filament' (material), or 'printer' (machine)."
  2. First observedv0.1.8

TDQS

A4.7/5.0
Behavior5/5

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

The description goes well beyond the annotations by disclosing side effects: it discards unsaved set_config overrides, reverts settings to stored values, and invalidates the last slice, recommending re-slicing. This is exactly the kind of behavioral context an agent needs, and it does not contradict the readOnlyHint/destructiveHint 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?

Three tight sentences: the first states the core action, the second covers critical side effects and reset semantics, and the third gives practical usage advice. There is no filler, and the most important caveat is front-loaded.

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?

For a simple two-parameter tool with no output schema, the description is complete: it explains what happens, what data is lost, how to get valid names, when to save first, and the need to re-slice. An agent has everything needed to use the tool correctly.

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?

The input schema already has full 100% coverage with detailed descriptions for both parameters, including the allowed groups and the requirement for exact names from list_presets. The description adds minimal new parameter-level information, so the baseline score of 3 is appropriate.

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 opens with a precise action: 'Make the named preset the active one for its group (print, filament, or printer).' It clearly identifies the resource (preset) and distinguishes it from sibling tools like list_presets and save_preset by stating exactly what selecting does.

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

Usage Guidelines5/5

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

The description gives explicit usage guidance: 'Use list_presets for valid names, and save_preset first if unsaved edits should survive the switch.' It also explains that this is 'the canonical way to reset dirty config,' which tells the agent when this tool is the right choice over alternatives.

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