Skip to main content
Glama

set_tempo

Change the project tempo to the specified BPM, setting the pace for all tracks and time-based operations.

Instructions

Set the project tempo in BPM.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bpmYes

Implementation Reference

  • The actual handler function that sets the project tempo using reapy's Project.bpm property.
    @mcp.tool()
    def set_tempo(bpm: float) -> dict:
        """Set the project tempo in BPM."""
        try:
            project = get_project()
            project.bpm = bpm
            return {"success": True, "tempo": project.bpm}
        except Exception as e:
            return {"success": False, "error": str(e)}
  • The @mcp.tool() decorator registers set_tempo as an MCP tool. The register_tools function in project_tools.py is called from server.py.
    @mcp.tool()
    def set_tempo(bpm: float) -> dict:
  • Helper function get_project() used by set_tempo to obtain the current REAPER project object.
    def get_project() -> reapy.Project:
        ensure_connected()
        return reapy.Project()
  • The type annotation bpm: float serves as the input schema. The function returns a dict with success/tempo or success/error keys.
    def set_tempo(bpm: float) -> dict:
Behavior2/5

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

No annotations are provided, so the description should disclose behavioral traits. However, it only states the basic action without mentioning any side effects, error conditions, or valid BPM ranges. This leaves an agent unaware of constraints.

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

Conciseness4/5

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

The description is a single concise sentence with no wasted words. However, it could benefit from slightly more detail without becoming verbose.

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

Completeness3/5

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

Given the tool's simplicity (one parameter, no output schema), the description is minimally adequate but lacks behavioral context like valid range or confirmation of effect. It meets the minimum but leaves gaps.

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

Parameters2/5

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

The schema coverage is 0% for the single parameter 'bpm', and the description adds no extra meaning beyond the basic type. It does not mention units, range, or typical values, failing to compensate for the lack of schema description.

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 the tool's purpose: setting the project tempo in BPM. It uses a specific verb-resource pair ('set the project tempo') and distinguishes itself from siblings like set_time_signature.

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

Usage Guidelines2/5

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

No guidance is provided on when to use this tool versus alternatives, nor any prerequisites or exclusions. The description lacks context for appropriate use cases.

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