Skip to main content
Glama

Change plan versions

edit_variants
Destructive

Manage floor plan versions: duplicate the active plan, start a new empty one, switch, rename, or delete variants to organize design alternatives.

Instructions

Change the plan versions (tabs): duplicate {name?} copies the active one, new {name?} starts an empty one — both switch to it; switch {i}; rename {i,name}; delete {i}. Edits apply to the active version. The list is the variants tool.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
iNoVariant index for switch/rename/delete
nameNoName for duplicate/new/rename
actionNo`duplicate` (copy active), `new` (empty), `switch`, `rename` or `delete`

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
iNoIndex of the new version
vNoPlan version written to, when there are several
okYesAlways true
idsNoIds created or touched
revNoPlan revision
textYesThe reply as written

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already flag mutating/destructive behavior, and the description adds useful context: duplicate copies the active version, new starts an empty one, both switch to the new version, and edits apply to the active version. It doesn't mention irreversibility or authorization, but it discloses key side effects beyond 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 a single dense, front-loaded sentence with no filler. Every clause conveys a distinct operation or behavioral note, and the action-parameter syntax is compact and scannable.

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?

With an output schema, annotations, and full schema coverage, the description covers the critical remaining gaps: action semantics and routing to the variant list tool. The only minor ambiguity is conditional parameter requirements for each action, but the action patterns make these reasonably inferable.

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?

The schema has 100% coverage, but the description adds substantial semantic value by mapping each action to its parameter pattern: duplicate/new take optional names, switch/rename/delete target an index, and rename requires both i and name. It also clarifies the meaning of actions (copy vs. empty vs. switch) beyond the schema's terse parameter descriptions.

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 states a specific verb and resource ('Change the plan versions (tabs)') and enumerates the exact operations: duplicate, new, switch, rename, delete. It also distinguishes itself from the sibling 'variants' tool by explicitly naming it as the list tool.

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 gives clear routing guidance with 'The list is the variants tool', telling the agent to use the sibling for listing and this tool for changing versions. It doesn't spell out every alternative, but the operation list and resource scope make the intended context clear.

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