Skip to main content
Glama

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
NameRequiredDescriptionDefault
track_indexYes

Implementation Reference

  • 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}"

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/FreeRiverHouse/ableton-flow'

If you have feedback or need assistance with the MCP directory API, please join our Discord server