Skip to main content
Glama

apply

Apply a mix proposal to Ableton Live, verifying it improves the target objective without sacrificing punch, crest, mono, or headroom. Reverts changes if not beneficial; dry-run mode filters only.

Instructions

Write a proposal to Live. With verify (default) it measures before and after and keeps the moves only if the objective improved without costing punch, crest, mono or headroom; otherwise it puts them back. Runs as a job: poll job(job_id). dry_run only runs the policy filter.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
verifyNo
dry_runNo
proposal_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.2/5.0
Behavior5/5

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

With no annotations, the description fully carries the behavioral disclosure. It explains the verify mechanism (measures before/after, keeps moves only if objective improves without certain costs, otherwise reverts), the async job execution, and the dry_run behavior. This is comprehensive and goes beyond a simple mutation, covering rollback and polling requirements.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences with no fluff. The main purpose is front-loaded, and the critical behavioral details (verify, dry_run, job polling) are packed efficiently. Every sentence contributes to understanding.

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

Completeness5/5

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

Given the complexity of the operation (mutation with verification, rollback, async job), the description is complete. It tells the agent it needs a proposal_id, explains the two boolean parameters, and tells it to poll job(job_id). An output schema exists, so return format is covered elsewhere. Nothing essential is missing for correct invocation.

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. It explains verify (default behavior) and dry_run (only runs policy filter), and the proposal_id is self-explanatory from context. It does not explicitly define proposal_id but its role is obvious from the description's first sentence, so most parameters are effectively covered.

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?

The description clearly states the verb 'Write' and the resource 'a proposal to Live', which is specific and distinct from most siblings. It does not explicitly name alternative tools to differentiate itself, but the action is unambiguous enough for an agent to understand what it does.

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?

The description implies when to use the tool by explaining it applies a proposal and runs as a job, instructing the agent to poll the job. It also explains dry_run's purpose, but it does not explicitly state when not to use this tool versus alternatives like verify, job, or undo. The guidance is implied rather than explicit.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.