Skip to main content
Glama

set_item_volume

Set a media item's volume in dB by track and item index, so you can balance individual clips during REAPER mixing.

Instructions

Set the volume of a media item.

Args: volume_db: Volume in dB.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
volume_dbYes
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?

No annotations are provided, so the description carries the full behavioral burden, and it discloses almost nothing: not whether volume_db is clamped to a range, whether it requires the item to be selected, whether it replaces or offsets existing automation/envelope volume, or whether changes are undoable.

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?

Very short and front-loaded with the operation, though the 'Args:' block restates the schema property name rather than adding information, which is mildly wasteful but not harmful.

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?

For a 3-required-parameter mutation tool with no annotations, no output schema, and 0% parameter coverage, the description is far too thin. It omits how the item is identified, valid dB ranges, and what the operation returns or affects.

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% for 3 required parameters. The description only clarifies units for one of them ('Volume in dB'), leaving track_index and item_index completely undefined as to how the target item is addressed, so it does not compensate for the coverage gap.

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?

States a specific verb+resource: 'Set the volume of a media item.' An agent can tell it operates on an item rather than a track or a send, though the description never explicitly contrasts itself with set_track_volume or set_send_volume in the sibling list.

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?

There is no when-to-use guidance, no prerequisites, and no mention of alternatives such as set_track_volume or set_send_volume. The agent must infer from the name alone which sibling applies.

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