generate_melody
Generate melody by specifying a musical scale and root note, optionally setting the number of notes. Ideal for music creation and composition using the Strudel MCP Server's AI-powered tools.
Instructions
Generate melody from scale
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| length | No | Number of notes | |
| root | Yes | Root note | |
| scale | Yes | Scale name | 
Input Schema (JSON Schema)
{
  "properties": {
    "length": {
      "description": "Number of notes",
      "type": "number"
    },
    "root": {
      "description": "Root note",
      "type": "string"
    },
    "scale": {
      "description": "Scale name",
      "type": "string"
    }
  },
  "required": [
    "scale",
    "root"
  ],
  "type": "object"
}