Skip to main content
Glama

start_recording

Initiate recording on a specified track in REAPER DAW by arming it and starting transport. Provide the track index to begin capturing audio; call stop_transport when done.

Instructions

Arm a track and start recording. Call stop_transport when done.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
track_indexYes

Implementation Reference

  • The start_recording tool handler: arms a track and triggers REAPER record transport command (1013). Returns success/error dict.
    def start_recording(track_index: int) -> dict:
        """Arm a track and start recording. Call stop_transport when done."""
        try:
            project = get_project()
            track = project.tracks[track_index]
            track.armed = True
            RPR.Main_OnCommand(1013, 0)  # Transport: Record
            return {
                "success": True,
                "track_index": track_index,
                "message": "Recording started. Call stop_transport to stop.",
            }
        except Exception as e:
            return {"success": False, "error": str(e)}
  • Import and registration of audio_tools module (which contains start_recording) via register_tools on the mcp instance.
    from reaper_mcp.audio_tools import register_tools as _reg_audio
  • Invocation of _reg_audio(mcp) which registers all audio tools including start_recording.
    _reg_audio(mcp)
  • The register_tools function in audio_tools.py uses @mcp.tool() decorator pattern to register start_recording as an MCP tool.
    def register_tools(mcp):
  • get_project() helper called by start_recording to get the active REAPER project.
    def get_project() -> reapy.Project:
        ensure_connected()
        return reapy.Project()
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries full burden. It only states 'arm and start recording' without disclosing side effects, prerequisites, or whether it is destructive. Minimal behavioral context.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences totaling 11 words, no redundancy. Front-loaded the main action and followed with a necessary instruction. Efficient and structured.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Despite low complexity (single parameter, no output schema), the description omits key details: expected track state, error conditions, and what happens post-recording. Insufficient for an agent to use confidently.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, and the description does not mention the 'track_index' parameter at all. No explanation of indexing or allowed values, leaving the agent uninformed.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states 'Arm a track and start recording,' which is a specific verb+resource action. It distinguishes from siblings like play_project or stop_transport.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides a clear usage hint: 'Call stop_transport when done,' indicating a sequential action. It implies using this tool to record on a track, but lacks explicit exclusions or alternatives.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

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/bonfire-audio/reaper-mcp'

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