Skip to main content
Glama

add_parallel_compression

Set up New York-style parallel compression for a track by creating a compressed bus track and a send from the source. Returns bus, send, and compressor FX indices.

Instructions

Set up New York style parallel compression for a track.

Creates a new bus track with heavy compression, fed by a send from the source track.

Args: track_index: Source track index (0-based). blend_db: Send level in dB for the compressed signal (default -6dB).

Returns: Object with bus_track_index, send_index, and compressor_fx_index.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
blend_dbNo
track_indexYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.7.3

TDQS

A4.1/5.0
Behavior4/5

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

No annotations are provided, so the description carries the full burden. It usefully discloses the side effects: a new bus track is created, a send is added from the source, and compression is applied — the agent knows three new entities result. Doesn't mention undo behavior or whether existing sends are affected, but the mutation profile is clear.

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 purpose, then tightly documents behavior, args, and returns in a standard structured format. The Returns section is slightly redundant with the Args-level description but adds the concrete output field names, so it earns its place.

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?

For a 2-parameter tool with no annotations, no output schema, and 0% schema coverage, the description supplies the missing pieces: parameter meaning, mutation side effects, and return shape. The remaining gap is the absence of guidance against sibling low-level alternatives.

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% and parameters have no inline descriptions, so the description must compensate. It does: track_index is defined as a 0-based source index, blend_db is clarified as the send level in dB with a -6 default. Units and indexing convention are added beyond the bare schema types.

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 (Set up) and a named mixing technique (New York style parallel compression) for a specific resource (track). Distinguishes itself from sibling primitives like create_send, create_bus, or add_compressor by bundling them into one high-level operation.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Implies 'use this when you want parallel compression,' but gives no explicit when/when-not guidance versus the low-level siblings it composes (create_send, create_bus, add_compressor). An agent can't tell whether to call this or build the chain manually.

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