Skip to main content
Glama

set_track_send

Adjust volume and pan settings for track sends in REAPER projects to control audio routing and balance within your mix.

Instructions

Set the volume and/or pan of a track send.

  • volume: linear amplitude (1.0 = 0 dB)

  • pan: -1.0 (full left) to 1.0 (full right)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
track_indexYes
send_indexYes
volumeNo
panNo

Implementation Reference

  • Handler implementation in the adapter, which forwards the call to the BridgeClient.
    def set_track_send(
        self,
        track_index: int,
        send_index: int,
        volume: float | None = None,
        pan: float | None = None,
    ) -> dict[str, Any]:
        return self._client.call(
            "set_track_send",
            track_index=track_index,
            send_index=send_index,
            volume=volume,
            pan=pan,
        )
  • Tool registration and entry point wrapper.
    def set_track_send(
        track_index: int,
        send_index: int,
        volume: float | None = None,
        pan: float | None = None,
    ) -> dict[str, Any]:
        """
        Set the volume and/or pan of a track send.
        - volume: linear amplitude (1.0 = 0 dB)
        - pan: -1.0 (full left) to 1.0 (full right)
        """
        try:
            return _wrap(
                adapter.set_track_send(
                    track_index=track_index,
                    send_index=send_index,
                    volume=volume,
                    pan=pan,
                )
            )
        except Exception as exc:
            return _err(exc)

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/danielkinahan/ReaMCP'

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