Skip to main content
Glama

set_track_mute

Mute or unmute a specific track in Ableton Live by specifying the track index and mute state to control audio output during music production.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
track_indexYes
muteNo

Implementation Reference

  • MCP tool handler function that proxies the set_track_mute command to the Ableton Remote Script via socket connection.
    @mcp.tool() def set_track_mute(ctx: Context, track_index: int, mute: bool = False) -> str: try: ableton = get_ableton_connection() result = ableton.send_command("set_track_mute", {"track_index": track_index, "mute": mute}) status = "muted" if result.get('mute') else "unmuted" return f"Track '{result.get('track_name')}' is now {status}" except Exception as e: logger.error(f"Error setting track mute: {str(e)}") return f"Error setting track mute: {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