remove_effect
Remove audio effects from Strudel music patterns to modify sound characteristics or clean up compositions.
Instructions
Remove effect
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| effect | Yes | Effect to remove |
Implementation Reference
- src/server/EnhancedMCPServerFixed.ts:317-327 (registration)Registration of the 'remove_effect' tool in getTools(), including its input schema. No separate handler implementation found in the switch statement of executeTool.{ name: 'remove_effect', description: 'Remove effect', inputSchema: { type: 'object', properties: { effect: { type: 'string', description: 'Effect to remove' } }, required: ['effect'] } },