generate_fill
Create custom drum fills by specifying style and number of bars. Designed for AI-assisted music patterns in Strudel MCP Server, supporting TidalCycles and live coding workflows.
Instructions
Generate drum fill
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bars | No | Number of bars | |
style | Yes | Fill style |
Input Schema (JSON Schema)
{
"properties": {
"bars": {
"description": "Number of bars",
"type": "number"
},
"style": {
"description": "Fill style",
"type": "string"
}
},
"required": [
"style"
],
"type": "object"
}