load_drum_kit
Loads a drum rack and specific drum kit into Ableton Live via the AbletonMCP server. Specify track index, rack URI, and kit path to configure drum setup for music production.
Instructions
Load a drum rack and then load a specific drum kit into it.
Parameters:
track_index: The index of the track to load on
rack_uri: The URI of the drum rack to load (e.g., 'Drums/Drum Rack')
kit_path: Path to the drum kit inside the browser (e.g., 'drums/acoustic/kit1')
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_kitArguments",
"type": "object"
}