unselect_all_tracks
Deselect all tracks in REAPER DAW to reset the selection state before starting a new mixing or editing task.
Instructions
Unselect all tracks.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Deselect all tracks in REAPER DAW to reset the selection state before starting a new mixing or editing task.
Unselect all tracks.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Changes observed during successful MCP inspections.
v1.7.3Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations present, the description carries the full behavioral burden and discloses nothing: it does not say that this only clears selection state (not deleting anything), whether it affects items or notes, or what happens afterward. For a state-mutating operation with zero annotation coverage, this is a notable gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single short sentence with no filler, and the action is front-loaded. It is efficiently structured, though the brevity borders on under-specification rather than genuine economy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is trivially simple (no parameters, no output schema), so the description covers the essential action. It nonetheless omits any clarification of the resulting state or how it relates to item-level selection, leaving an agent to infer the effect.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool takes zero parameters, so there are no parameter semantics to document. Baseline 4 applies since the description cannot be faulted for omitting parameter detail that does not exist.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The sentence names a clear verb ('Unselect') and resource ('all tracks'), so the operation is unambiguous. However, it is essentially the tool name restated verbatim and provides no additional scope or differentiation from siblings such as select_all_tracks or unselect_all_items.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
There is no stated context for when to use this tool, no prerequisites (e.g., that a selection must exist first), and no mention of alternatives like unselect_all_items or select_track. The agent must infer all usage conditions from the name alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.