load_drum_kit_tool
Load a drum rack and assign a specific drum kit to it using track index, rack URI, and kit path. Facilitates AI-assisted music production within Ableton Live via the AbletonMCP server.
Instructions
Load a drum rack and then load a specific drum kit into it.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
kit_path | Yes | ||
rack_uri | Yes | ||
track_index | Yes |
Input Schema (JSON Schema)
{
"properties": {
"kit_path": {
"title": "Kit Path",
"type": "string"
},
"rack_uri": {
"title": "Rack Uri",
"type": "string"
},
"track_index": {
"title": "Track Index",
"type": "integer"
}
},
"required": [
"track_index",
"rack_uri",
"kit_path"
],
"title": "load_drum_kit_toolArguments",
"type": "object"
}