generate_polyrhythm
Create complex polyrhythms by specifying sound arrays and pattern numbers, enabling rhythmic layering for music production using the Strudel MCP Server.
Instructions
Generate polyrhythm
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| patterns | Yes | Pattern numbers | |
| sounds | Yes | Sounds to use | 
Input Schema (JSON Schema)
{
  "properties": {
    "patterns": {
      "description": "Pattern numbers",
      "items": {
        "type": "number"
      },
      "type": "array"
    },
    "sounds": {
      "description": "Sounds to use",
      "items": {
        "type": "string"
      },
      "type": "array"
    }
  },
  "required": [
    "sounds",
    "patterns"
  ],
  "type": "object"
}