set_clip_name
Rename clips in Ableton Live by specifying the track index, clip index, and new name. Integrates with AI-assisted music production workflows via AbletonMCP server.
Instructions
Set the name of a clip.
Parameters:
track_index: The index of the track containing the clip
clip_index: The index of the clip slot containing the clip
name: The new name for the clip
Input Schema
Name | Required | Description | Default |
---|---|---|---|
clip_index | Yes | ||
name | Yes | ||
track_index | Yes |
Input Schema (JSON Schema)
{
"properties": {
"clip_index": {
"title": "Clip Index",
"type": "integer"
},
"name": {
"title": "Name",
"type": "string"
},
"track_index": {
"title": "Track Index",
"type": "integer"
}
},
"required": [
"track_index",
"clip_index",
"name"
],
"title": "set_clip_nameArguments",
"type": "object"
}