load_instrument_or_effect_tool
Load instruments or effects onto Ableton Live tracks by specifying the track index and URI. Integrates with the AbletonMCP server for AI-assisted music production.
Instructions
Load an instrument or effect onto a track using its URI.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| track_index | Yes | ||
| uri | Yes |
Input Schema (JSON Schema)
{
"properties": {
"track_index": {
"title": "Track Index",
"type": "integer"
},
"uri": {
"title": "Uri",
"type": "string"
}
},
"required": [
"track_index",
"uri"
],
"title": "load_instrument_or_effect_toolArguments",
"type": "object"
}