get_track_info
Retrieve detailed information about a specific track in Ableton Live by providing its index number. Use this tool to access track data for music production workflows.
Instructions
Get detailed information about a specific track in Ableton.
Parameters:
track_index: The index of the track to get information about
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| track_index | Yes |
Implementation Reference
- MCP_Server/server.py:236-248 (handler)The `get_track_info` function is defined as an MCP tool, which calls `_run` to communicate with the Ableton Remote Script.
@mcp.tool() def get_track_info(ctx: Context, track_index: int) -> str: """ Get detailed information about a specific track in Ableton. Parameters: - track_index: The index of the track to get information about """ try: return json.dumps(_run("get_track_info", {"track_index": track_index}), indent=2) except Exception as e: return f"Error: {e}"