Skip to main content
Glama

configure_reacomp_sidechain

Enable ReaComp to use sidechain input for detection by specifying the track and FX index. Choose between auxiliary and main input as needed.

Instructions

Configure ReaComp to use sidechain input for detection.

Args: track_index: Track index (0-based) where ReaComp is located. fx_index: FX index (0-based) of ReaComp in the FX chain. use_sidechain: True to use auxiliary input (channels 3-4), False for main input.

Returns: Object with configuration status.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
fx_indexYes
track_indexYes
use_sidechainNo

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, yet it only states the mechanical effect and a return type. It omits whether a sidechain send must exist first, whether the change is reversible, and any state the toggle affects.

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?

Front-loaded with the core action and organized into Args/Returns sections; every line earns its place. The docstring framing is slightly heavier than necessary but not wasteful.

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

Completeness3/5

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

With no output schema, the description appropriately states the return value, and it covers all parameters. But for a state-mutating tool with zero annotation coverage, it lacks prerequisite and usage context needed to call it confidently.

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

Parameters4/5

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

Schema description coverage is 0%, so the description has to compensate, and it does: it documents all three parameters, noting 0-based indexing for track_index/fx_index and that use_sidechain=True maps to auxiliary input channels 3-4 while False uses the main input. This adds real meaning beyond the bare schema.

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 (configure) and resource (ReaComp sidechain input for detection), so the action is unambiguous. However, it does not distinguish this tool from closely related siblings such as setup_sidechain_compression or setup_sidechain_send, leaving the agent to infer the boundary.

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 and no exclusions or alternatives offered. The description never explains how this differs from setup_sidechain_compression or setup_sidechain_send, so an agent cannot tell which sidechain tool to pick.

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