Skip to main content
Glama

set_fx_param

Set a single FX parameter in REAPER using normalized (0-1), formatted (e.g., -16 dB), or relative values. Supports dry-run preview and undo blocks.

Instructions

Set one FX parameter. Give normalized_value (0-1), formatted_value (e.g. '-16.00 dB', '80 Hz' — the bridge binary-searches the normalized value whose display matches), or relative ('+0.1'). Scan with get_fx_parameters first and prefer param_index. Undo-block wrapped; supports dry_run.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
trackNoExact track name (case-insensitive).
dry_runNoPreview: return what would run without changing the project.
fx_indexNo
fx_scopeNo
relativeNo
param_indexNo
track_containsNoCase-insensitive substring; errors if it matches more than one track.
formatted_valueNo
fx_name_containsNo
normalized_valueNo
target_track_guidNoStable REAPER track GUID; preferred when available.
use_selected_trackNoTarget the currently selected track instead of naming one.
param_name_containsNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.9/5.0
Behavior4/5

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

With no annotations, the description carries the burden and does well: it discloses that writes are undo-block wrapped, that dry_run previews without mutating, and that formatted_value triggers a binary search on the display string. Auth requirements and error/failure behavior are still undisclosed.

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?

Terse, front-loaded, and every clause earns its place: purpose, the three value modes with examples, the scan-first routing, and the undo/dry_run traits, all in four compact sentences.

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?

For a 13-parameter mutation tool with no annotations and no output schema, the description covers the critical value semantics and mutation safety, but leaves the targeting parameters (fx_index, fx_scope, name matching) and error/output behavior unexplained.

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 coverage is only 38% across 13 params. The description adds real meaning for the three value parameters (0-1 range, display-string examples, relative syntax) and hints at param_index preference, but fx_index, fx_scope, param_name_contains, and fx_name_contains remain undocumented in both schema and description.

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+resource ('Set one FX parameter') and clearly delineates itself from the read-side sibling by instructing the agent to scan with get_fx_parameters first. It does not distinguish itself from nearby write siblings like set_fx_preset, tune_param, or write_automation, so it falls short of a 5.

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

Usage Guidelines4/5

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

Gives an explicit prerequisite and alternative ('Scan with get_fx_parameters first and prefer param_index'), plus three concrete input modes (normalized, formatted, relative). No when-not-to-use guidance against sibling mutation tools, so not a 5.

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