mcp_opendaw_set_effect_parameter
Set an audio effect's parameter — such as input gain or mix — by providing the effect chain index, parameter name, and numeric value.
Instructions
Set a parameter on an audio effect.
unit_index: Audio unit index. effect_index: Effect position in the chain (0-based). parameter_name: Parameter name from mcp_opendaw_list_effect_parameters (e.g. "inputGain", "mix", "equation"). value: Numeric value for float params. For string params (like Waveshaper equation), pass the string as parameter_name=value pair — use parameter_name="equation" and value as a special case.
Examples: set_effect_parameter(0, 0, "inputGain", 12.0) # Waveshaper +12dB input set_effect_parameter(0, 0, "mix", 1.0) # 100% wet set_effect_parameter(0, 0, "equation", 0) # Use string_value for equation
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| value | Yes | ||
| unit_index | Yes | ||
| effect_index | Yes | ||
| parameter_name | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |