duplicate_clip_to_track
Duplicate a clip to a specified track at a specific time in Ableton Live using Ableton Copilot MCP, enabling precise clip management and arrangement control.
Instructions
duplicate clip to track
Input Schema
Name | Required | Description | Default |
---|---|---|---|
clip_id | Yes | ||
time | Yes | ||
track_id | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"clip_id": {
"type": "string"
},
"time": {
"type": "number"
},
"track_id": {
"type": "string"
}
},
"required": [
"clip_id",
"track_id",
"time"
],
"type": "object"
}