Skip to main content
Glama

remove_fx

Delete an FX plugin from a track's effects chain in REAPER. Specify track and FX indices to remove specific audio processing tools from your project.

Instructions

Remove an FX plugin from a track's FX chain.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
track_indexYes
fx_indexYes

Implementation Reference

  • The MCP tool definition and handler for 'remove_fx'. It wraps the adapter call and handles potential errors.
    @mcp.tool()
    def remove_fx(track_index: int, fx_index: int) -> dict[str, Any]:
        """Remove an FX plugin from a track's FX chain."""
        try:
            return _wrap(adapter.remove_fx(track_index=track_index, fx_index=fx_index))
        except Exception as exc:
            return _err(exc)
  • The adapter method that forwards the 'remove_fx' request to the REAPER client.
    def remove_fx(self, track_index: int, fx_index: int) -> dict[str, Any]:
        return self._client.call(
            "remove_fx", track_index=track_index, fx_index=fx_index
        )

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