Skip to main content
Glama

set_item_mute

Mute or unmute a specific media item in REAPER using track index, item index, and a true/false mute flag.

Instructions

Mute or unmute a media item.

Args: mute: True to mute, False to unmute.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
muteYes
item_indexYes
track_indexYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.7.3

TDQS

C2.7/5.0
Behavior2/5

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

With no annotations, the description carries full behavioral burden but only discloses the mute/unmute direction for the 'mute' parameter. It does not describe side effects, reversibility, persistence, permissions, or any error behavior. While it clarifies the boolean toggle, this is minimal for a mutation tool.

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 appropriately sized and front-loads the core purpose in a single sentence. The 'Args:' section adds minimal, non-redundant detail for the mute parameter. It is efficient with no wasted words, though the formatting is slightly bare.

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, no output schema, and 0% schema description coverage for three required parameters, the description is notably incomplete. It omits any explanation of 'track_index' and 'item_index' and does not address return values or side effects. An agent would need to infer much from context.

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 compensate. It explains only the 'mute' parameter's meaning (True to mute, False to unmute), but provides no semantics for 'track_index' and 'item_index' beyond their names. The description partially fills the gap for one of three parameters.

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 verb 'Mute or unmute' and the target resource 'a media item'. It implicitly distinguishes from the sibling 'set_track_mute' by specifying item-level scope, though it does not explicitly name or contrast with that sibling. The core action 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 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, nor any prerequisites or context about conditions. It simply states the action and parameter meaning, leaving the agent to infer usage entirely from the name and schema.

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