generate_drums
Create custom drum patterns for Strudel.cc by specifying style and complexity levels. Facilitates music generation and live coding within the Strudel MCP Server environment.
Instructions
Generate drum pattern
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| complexity | No | Complexity (0-1) | |
| style | Yes | Drum style |
Input Schema (JSON Schema)
{
"properties": {
"complexity": {
"description": "Complexity (0-1)",
"type": "number"
},
"style": {
"description": "Drum style",
"type": "string"
}
},
"required": [
"style"
],
"type": "object"
}