Skip to main content
Glama

get_project_summary

Retrieve a full snapshot of the current REAPER project—tempo, tracks, FX, markers, and regions—so you can give informed mixing and production advice in one call.

Instructions

Get a comprehensive summary of the current REAPER project.

Returns everything needed to understand the project state and give useful mixing/production advice in a single call.

Returns: Object with: - project_name: Name of the project file - project_path: Full path to the project - tempo: Project tempo in BPM - time_signature: {numerator, denominator} - project_length: Length in seconds - track_count: Total number of tracks - tracks: List of track info objects, each containing: - index: Track index (0-based) - name: Track name - volume_db: Volume in decibels - pan: Pan position (-1 to 1) - mute: Boolean mute state - solo: Boolean solo state - fx_count: Number of FX plugins - fx_names: List of FX plugin names - master: Master track info {volume_db, fx_count, fx_names} - markers: List of {index, position, name} - regions: List of {index, start, end, name}

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.7.3

TDQS

A4.4/5.0
Behavior4/5

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

No annotations are provided, so the description carries the full burden. It transparently documents the complete return shape, which is the main behavioral information for a getter. It does not explicitly state read-only/no side effects, but 'Get' and the return-only documentation make the read-only nature clear.

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?

Front-loads the core purpose in the first sentence, then uses a well-structured Returns list. The length is justified because there is no output schema, though the phrase about giving useful mixing/production advice is slightly editorial rather than strictly necessary.

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

Completeness5/5

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

With no output schema, no annotations, and no input parameters, the description fully compensates by enumerating the returned object and all nested track, master, marker, and region fields. Nothing essential for calling or interpreting this summary tool is missing.

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

Parameters4/5

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

The tool has zero parameters, so schema semantics are not a concern. Baseline for zero parameters is 4, and the description appropriately does not invent or discuss parameters.

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?

States a specific verb and resource ('Get a comprehensive summary of the current REAPER project') and distinguishes itself from sibling getters by being the single-call aggregate that returns project state. An agent can tell it is the high-level summary tool rather than one of the narrow getters like get_project_name or get_tempo.

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?

Clearly indicates the context of use: it returns everything needed to understand project state and give mixing/production advice in a single call. It does not explicitly list when not to use it or name the individual alternatives, but the single-call framing implies preference over multiple narrow getters.

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

Deploy Server

Other Tools