create_clip_tool
Generate a new MIDI clip in Ableton Live by specifying the track and clip slot for AI-assisted music production using the AbletonMCP server.
Instructions
Create a new MIDI clip in the specified track and clip slot.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
clip_index | Yes | ||
length | No | ||
track_index | Yes |
Input Schema (JSON Schema)
{
"properties": {
"clip_index": {
"title": "Clip Index",
"type": "integer"
},
"length": {
"default": 4,
"title": "Length",
"type": "number"
},
"track_index": {
"title": "Track Index",
"type": "integer"
}
},
"required": [
"track_index",
"clip_index"
],
"title": "create_clip_toolArguments",
"type": "object"
}