Skip to main content
Glama

Read a mix

bandlab_get_mix
Read-only

Read a BandLab revision's mix as compact text, showing tracks, levels, panning, effects, and regions before making edits.

Instructions

Fetches one revision and renders its tracks, levels, panning, effects and regions as compact text. This is what you read before proposing an edit.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
rawNoAlso return the full JSON (large)
revisionIdYesRevision id from bandlab_list_revisions

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already mark the operation readOnlyHint=true, so no safety disclosure is needed. The description adds useful behavioral context beyond that: it fetches a single revision and renders a compact text representation rather than raw JSON, which helps the agent anticipate output size and 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?

Two sentences with no filler: the first states what the tool does and the output form, the second states when to use it. Everything earns its place.

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 read-only tool with a fully documented schema, the description provides the essential context: it fetches one revision, what data is rendered, and the intended workflow position. Without an output schema, the concise mention of 'compact text' plus the listed musical elements is sufficient guidance.

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 description coverage is 100%, so the schema already documents revisionId and raw fully. The description adds no new parameter-level meaning beyond restating output fields, matching the baseline for a fully covered schema.

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 uses a specific verb ('Fetches') and resource ('one revision') and enumerates the rendered elements: tracks, levels, panning, effects, and regions. It also distinguishes itself from siblings like bandlab_list_revisions and bandlab_edit_mix by scoping to a single revision for read-before-edit purposes.

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?

'This is what you read before proposing an edit' gives clear situational context and implies the tool should precede bandlab_edit_mix. It does not enumerate exclusions or alternatives by name, but the intended workflow is evident.

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