Skip to main content
Glama

get_eq_band_enabled

Check if a ReaEQ band is enabled on a specific track and FX instance. Provide track index, FX index, band type, and band index to get the enabled status.

Instructions

Check whether a ReaEQ band is enabled.

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).

Returns: Object with 'ret' boolean (true=enabled).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bandidxNo
bandtypeYes
fx_indexYes
track_indexYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.7.3

TDQS

A3.7/5.0
Behavior3/5

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

No annotations are provided, so the description carries the burden. It does disclose the return shape ('Object with ret boolean, true=enabled') and implicitly indicates a non-mutating read via 'Check', but says nothing about permissions, error behavior when the FX index is invalid, or whether the track must be selected.

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?

Purpose is front-loaded in one sentence, followed by a clean Args/Returns structure with no redundant prose. Slightly verbose in header labels but every line carries information.

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

Completeness4/5

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

There is no output schema, so documenting the return object is the right call, and the bandtype enum is a valuable addition. The one gap is the undocumented track_index parameter, which an agent must infer.

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 coverage is 0%, so the description must compensate, and it does well for three of four params: it explains fx_index (0-based), bandidx (0=first), and critically supplies the full bandtype enum mapping (0=hipass ... 5=lopass) which the schema lacks entirely. It omits any description of track_index, keeping it short of a 5.

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+resource: checking the enabled state of a ReaEQ band. This is clearly distinguishable from siblings like get_eq_bands (all bands) and set_eq_band_enabled (mutation), so an agent can select it without opening either schema.

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 explains the arguments but gives no guidance on when to prefer this over get_eq_bands or how it relates to set_eq_band_enabled. Usage context is left entirely to inference from the tool name.

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