remove_effect
Removes specified effects from Strudel music patterns to streamline audio processing and modify live music generation. Part of the Strudel MCP Server for AI-powered music creation.
Instructions
Remove effect
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| effect | Yes | Effect to remove |
Implementation Reference
- src/server/EnhancedMCPServerFixed.ts:285-295 (registration)Registration and schema definition for the 'remove_effect' tool in getTools() method. No separate handler implementation found; falls through to 'Unknown tool' error.{ name: 'remove_effect', description: 'Remove effect', inputSchema: { type: 'object', properties: { effect: { type: 'string', description: 'Effect to remove' } }, required: ['effect'] } },
- Input schema definition for 'remove_effect' tool.{ name: 'remove_effect', description: 'Remove effect', inputSchema: { type: 'object', properties: { effect: { type: 'string', description: 'Effect to remove' } }, required: ['effect'] } },
- src/server/EnhancedMCPServer.ts:282-292 (registration)Registration and schema definition for the 'remove_effect' tool in getTools() method in older version. No handler implementation.{ name: 'remove_effect', description: 'Remove effect', inputSchema: { type: 'object', properties: { effect: { type: 'string', description: 'Effect to remove' } }, required: ['effect'] } },