Skip to main content
Glama

set_input_monitoring

Control input monitoring on REAPER tracks to enable, disable, or set conditional monitoring based on playback state.

Instructions

Set input monitoring mode for a track.

  • mode: 0 = off, 1 = on, 2 = not when playing

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
track_indexYes
modeYes

Implementation Reference

  • The MCP tool registration and handler entry point for set_input_monitoring.
    @mcp.tool()
    def set_input_monitoring(track_index: int, mode: int) -> dict[str, Any]:
        """
        Set input monitoring mode for a track.
        - mode: 0 = off, 1 = on, 2 = not when playing
        """
        try:
            return _wrap(
                adapter.set_input_monitoring(track_index=track_index, mode=mode)
            )
        except Exception as exc:
  • The adapter method that calls the underlying REAPER client for set_input_monitoring.
    def set_input_monitoring(
        self, track_index: int, mode: int
    ) -> dict[str, Any]:
        """mode: 0=off, 1=on, 2=not when playing"""
        return self._client.call(
            "set_input_monitoring",
            track_index=track_index,
            mode=mode,
        )

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