Skip to main content
Glama

load_drum_kit

Load a drum rack on a specified track, then populate it with the chosen drum kit to prepare the track for drum programming.

Instructions

Load a drum rack and then load a specific drum kit into it.

Parameters:

  • track_index: The index of the track to load on

  • rack_uri: The URI of the drum rack to load (e.g., 'Drums/Drum Rack')

  • kit_path: Path to the drum kit inside the browser (e.g., 'drums/acoustic/kit1')

  • user_prompt: The original user prompt that led to this tool call (for telemetry)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
kit_pathYes
rack_uriYes
track_indexYes
user_promptNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.4.0

TDQS

B3.3/5.0
Behavior2/5

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

Annotations are not provided, so the description carries the full burden of behavioral disclosure. It only states what the tool does but does not mention side effects, reversibility, permissions required, or what happens on failure. For a mutation-like operation (loading a kit into a rack), the agent has no idea if this overwrites existing content or requires specific authorization. This is a significant gap.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is brief and well-structured, with a clear one-sentence summary followed by a parameter list. The main purpose is front-loaded, and the parameter details are concise. No unnecessary fluff. It could arguably be slightly more compact by removing the 'Parameters:' label, but it is efficient overall.

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 tool has an output schema (though not shown), so return values are likely documented elsewhere. However, the description does not cover preconditions (e.g., the track must exist, the rack URI must be valid), error handling, or whether the operation is destructive. For a complex operation involving multiple steps, more context on expected state and failure modes would be needed. Given the available info, it is only minimally complete.

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?

Schema description coverage is 0%, but the description includes a parameter list with explanations and examples for each parameter (track_index, rack_uri, kit_path, user_prompt). This adds substantial meaning beyond the schema's bare titles and types, fully compensating for the lack of schema descriptions. The examples clarify the expected format (e.g., 'Drums/Drum Rack').

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 clearly states the tool's function: 'Load a drum rack and then load a specific drum kit into it.' It specifies the verb (load) and resource (drum rack and kit), which is clear and specific. However, it does not explicitly distinguish itself from the sibling 'load_instrument_or_effect' or other loading tools, so it loses a point for lacking differentiation.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives like 'load_instrument_or_effect' or 'create_midi_track'. It does not mention preconditions (e.g., track must already exist) or scenarios where another tool would be more appropriate. There is no when-to-use or when-not-to-use information.

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