generate_chord_progression
Create custom chord progressions for music composition by specifying key and style (pop, jazz, blues, etc.) using AI-powered tools on the Strudel MCP Server.
Instructions
Generate chord progression
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| key | Yes | Key | |
| style | Yes | Style (pop/jazz/blues/etc) | 
Input Schema (JSON Schema)
{
  "properties": {
    "key": {
      "description": "Key",
      "type": "string"
    },
    "style": {
      "description": "Style (pop/jazz/blues/etc)",
      "type": "string"
    }
  },
  "required": [
    "key",
    "style"
  ],
  "type": "object"
}