generate_scale
Produce musical scale notes for composition using a specified root note and scale type, integrated with Strudel MCP Server for AI-powered music generation and live coding.
Instructions
Generate scale notes
Input Schema
Name | Required | Description | Default |
---|---|---|---|
root | Yes | Root note | |
scale | Yes | Scale type |
Input Schema (JSON Schema)
{
"properties": {
"root": {
"description": "Root note",
"type": "string"
},
"scale": {
"description": "Scale type",
"type": "string"
}
},
"required": [
"root",
"scale"
],
"type": "object"
}