Skip to main content
Glama

apply_changes

Apply multiple mixer adjustments as a single undoable step, enabling coordinated changes like rebalancing monitor mixes in one action.

Instructions

Apply several changes at once as ONE undo step, e.g. rebalancing a monitor mix: [{target:'click', param:'send.level', dest:'bus2', delta:3}, {target:'bass', param:'send.level', dest:'bus2', delta:-2}].

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
changesYes
confirmNo
summaryNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.1

TDQS

A3.7/5.0
Behavior3/5

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

Annotations indicate readOnlyHint=false and destructiveHint=false, so the tool is a write operation but not destructive. The description adds the useful context that changes are grouped as one undo step, which is not captured by annotations. However, it does not disclose other behaviors like partial-failure handling, confirmation requirements, or response format.

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 sentence with an inline JSON example, front-loading the core purpose and a concrete instance. There is no wasted prose, and the example is self-explanatory, making it highly efficient.

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?

The description covers the primary purpose and a use case, and the schema covers all parameter definitions. However, the description does not explain the confirm parameter's role (e.g., whether it requires user confirmation) or the summary field, and it does not mention failure/rollback semantics. For a batch operation, this leaves some gaps in understanding edge behavior.

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 schema itself provides detailed descriptions for each ChangeSpec field (target, param, dest, delta, value) and the confirm/summary parameters, so the description does not need to repeat them. The description gives an example that maps to the schema, but does not add additional semantic nuance beyond the schema's own documentation.

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 a specific verb ('apply') with a resource ('several changes at once') and provides a concrete example of a monitor mix rebalance. This distinguishes it from sibling tools like set_fader or set_mute, which handle single changes. The one-undo-step phrasing further clarifies its unique value.

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

Usage Guidelines3/5

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

The description implies when to use it (when multiple changes need to be applied together as one undo step) but does not explicitly state when not to use it or name alternatives like single-change tools. The example suggests a use case, but there is no explicit routing between this and the single-parameter setters.

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