apply_scale
Apply a specified musical scale to a root note in Strudel MCP Server, enabling precise control over pattern creation and enhancing AI-powered music generation.
Instructions
Apply scale to notes
Input Schema
Name | Required | Description | Default |
---|---|---|---|
root | Yes | Root note | |
scale | Yes | Scale name |
Input Schema (JSON Schema)
{
"properties": {
"root": {
"description": "Root note",
"type": "string"
},
"scale": {
"description": "Scale name",
"type": "string"
}
},
"required": [
"scale",
"root"
],
"type": "object"
}