Skip to main content
Glama

Mute/unmute track

reaper_set_track_mute

Change the mute status of any track in a live REAPER session by specifying its index and a boolean value. Works on macOS via MCP.

Instructions

Set the mute state of a track.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
indexYes
mutedYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.8/5.0
Behavior2/5

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

With no annotations, the description carries the full burden of behavioral disclosure. It only states the action without mentioning side effects, reversibility, effects on playback, or error behavior. It provides no information beyond what the name implies.

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, front-loaded sentence with no redundant content. It is appropriately short for a simple setter tool.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the lack of annotations, output schema, and parameter descriptions, the definition is incomplete. It does not explain return values, error handling, or any prerequisites. An agent has no information about the tool's behavior beyond the bare action.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must add meaning. It implies 'index' refers to a track index and 'muted' is a boolean state, but it adds no syntax, default behavior, or constraints beyond the schema. The contribution is minimal.

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 'Set the mute state of a track' clearly states a specific action on a specific resource. It is unambiguous and distinct from sibling tools like reaper_set_track_solo or reaper_set_track_volume, though it does not explicitly name alternatives. The title reinforces the purpose.

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 gives no guidance on when to use this tool versus alternatives. It does not mention contexts where muting is appropriate, nor does it exclude cases (e.g., when a track does not exist). No usage context is provided beyond the basic action.

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