apply_scale
Generate musical scales by specifying a root note and scale name for use in Strudel.cc pattern creation and music generation.
Instructions
Apply scale to notes
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| scale | Yes | Scale name | |
| root | Yes | Root note |
Implementation Reference
- src/server/EnhancedMCPServerFixed.ts:350-361 (registration)Registration of the 'apply_scale' tool, including its input schema definition. No separate handler implementation found; tool execution would fall to default error in executeTool.{ name: 'apply_scale', description: 'Apply scale to notes', inputSchema: { type: 'object', properties: { scale: { type: 'string', description: 'Scale name' }, root: { type: 'string', description: 'Root note' } }, required: ['scale', 'root'] } },