Skip to main content
Glama

Edit a mix

bandlab_edit_mix

Apply volume, pan, effects, and arrangement changes to a BandLab revision. Preview the diff first, then save a new non-destructive revision when ready.

Instructions

Applies mix operations to a revision. Defaults to a dry run that shows the diff without sending anything. With dryRun=false it saves a NEW revision (the original is never overwritten — BandLab keeps every version).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
opsYesOperations applied in order
dryRunNotrue previews the change; false saves a new revision
isPublicNoVisibility of the new revision. Omitted, it inherits the parent — so editing a public song produces another public revision. Pass false to keep the edit unlisted.
revisionIdYesRevision to edit, from bandlab_list_revisions
descriptionNoDescription to attach to the new revision
allowUnverifiedEffectsNoEffect slugs are checked against the harvested catalogue and unknown ones are refused, because a slug BandLab does not recognise is written into the project silently. Set true only for a slug you have confirmed elsewhere.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A4/5.0
Behavior5/5

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

Annotations only say idempotentHint=false and destructiveHint=false; the description adds crucial behavior: dry runs show a diff without sending anything, and commits create a new revision rather than overwriting the original. This explains the non-idempotent, non-destructive nature far better than the hints alone and sets correct expectations for repeated calls.

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 sentences, front-loaded with the main action, then the two behavior-critical facts: dry run default and new-revision commit. No filler and no duplication of the schema.

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?

For a complex 6-parameter tool with many op variants, the combination of description and fully-described schema is largely complete: the agent knows what action is taken, the safety model, and where parameters are described. The only real gap is that there is no output schema and the return/diff payload is only alluded to as 'shows the diff,' leaving result shape unspecified.

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?

Schema coverage is 100%, and the schema itself documents every parameter, including dryRun, isPublic, revisionId, description, allowUnverifiedEffects, and the ops enum with rich descriptions like the volume automation envelope. The description does not attempt to repeat this, so it correctly leaves the schema to carry the load; no additional meaning is added beyond the dryRun/new-revision behavior.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a clear verb and resource: 'Applies mix operations to a revision,' which tells the agent this is the mutation counterpart to read-only siblings like bandlab_get_mix and bandlab_list_revisions. It does not explicitly name an alternative or contrast itself, so it misses the top tier, but the purpose is unambiguous.

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 gives operational context—dry run by default, dryRun=false to commit—and the revision-creation behavior, which tells the agent the safe way to preview changes. It never states when to choose this over bandlab_raw_request or bandlab_get_mix, nor gives exclusions, so usage guidance is implied rather than explicit.

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