Skip to main content
Glama

get_track_mixer

Read-only

Retrieve a track's volume, pan, mute, solo, and send levels by track ID to inspect its mixer state.

Instructions

Read bounded track volume, pan, mute, solo, and named return sends.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
trackIdYesStable track ID returned by list_tracks.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, so the description is consistent and safe. The description adds the specific set of mixer fields being read, which is useful, but it does not explain response shape or any other behavioral traits beyond the annotation-covered read-only nature.

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?

A single front-loaded sentence communicates verb, resource, and field scope with no wasted words. The only mildly ambiguous word is 'bounded,' but it does not meaningfully reduce the conciseness or clarity.

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 simple one-parameter read tool with safety annotations, the description is largely complete: it names all relevant mixer fields and is clearly read-only. It stops short of explicitly describing the return shape, though 'Read' strongly implies the values are returned, and the word 'bounded' could be clearer.

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 trackId parameter is already fully documented as a stable track ID from list_tracks. The description adds no additional parameter semantics, but the schema fully carries that burden, so baseline 3 is appropriate.

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 ('Read') and identifies the exact resource: a track's volume, pan, mute, solo, and named return sends. This clearly separates it from sibling tools like set_track_mixer and master/set mixer tools, even without naming them explicitly.

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 'Read' verb implies that this is the correct tool when the agent needs current track mixer values, and that set_track_mixer is for modifications. However, there is no explicit when-to-use guidance or named alternative, leaving usage to inference rather than direct statement.

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

Deploy Server

Other Tools