Skip to main content
Glama

set_eq_band_enabled

Enable or disable a ReaEQ band in REAPER to control EQ filtering, specifying track, FX index, band type, band index, and enabled state.

Instructions

Enable or disable a ReaEQ band.

Args: fx_index: FX index (0-based) of ReaEQ. bandtype: Band type (0=hipass, 1=loshelf, 2=band, 3=notch, 4=hishelf, 5=lopass). bandidx: Band index within that type (0=first). enabled: True to enable, False to disable.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bandidxNo
enabledNo
bandtypeYes
fx_indexYes
track_indexYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.7.3

TDQS

B3.1/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. It signals a mutation but omits permissions, side effects, return behavior, and required track context, leaving significant gaps for a state-changing operation.

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 definition is front-loaded with purpose and then a compact Args list; no sentence is wasted. However, the Args list is incomplete because track_index is missing, which slightly weakens the structure.

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 5-parameter mutation tool with no annotations and no output schema, the definition is incomplete. It lacks prerequisites, return or side-effect details, alternative-tool guidance, and documentation for required track_index.

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 description coverage is 0%, so the description must compensate. It usefully documents fx_index as 0-based, bandtype mappings, bandidx, and enabled, but completely omits required track_index, leaving one of five parameters unexplained.

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?

States a specific verb (enable or disable) and resource (ReaEQ band), distinguishing it from read-only get_eq_band_enabled and broader set_eq_band by focusing only on the enabled state.

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?

No when/when-not guidance or alternative routing is provided; usage is only implied by the tool name. It does not mention prerequisites such as needing an existing ReaEQ instance or how it relates to set_eq_band and get_eq_band_enabled.

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