Skip to main content
Glama

set_track_panning

Adjust stereo positioning for tracks in Ableton Live by setting left-right panning values to create spatial audio mixes.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
track_indexYes
panningYes

Implementation Reference

  • MCP tool handler function that proxies the set_track_panning command to the Ableton Remote Script socket server, handling connection and error cases.
    @mcp.tool() def set_track_panning(ctx: Context, track_index: int, panning: float) -> str: try: ableton = get_ableton_connection() result = ableton.send_command("set_track_panning", {"track_index": track_index, "panning": panning}) return f"Set track '{result.get('track_name')}' panning to {result.get('panning'):.2f}" except Exception as e: logger.error(f"Error setting track panning: {str(e)}") return f"Error setting track panning: {str(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/Milesy1/MCP-Ableton-API'

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