delete_selected_items
Remove all selected items in REAPER DAW to clean up your music project.
Instructions
Delete all selected items.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Remove all selected items in REAPER DAW to clean up your music project.
Delete all selected items.
| 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?
No annotations are provided, so the description carries the full behavioral burden. It doesn't disclose whether deletion removes items from disk, whether it is undoable, what happens to an empty selection, or the scope of affected entities. It adds the key fact that the operation targets selected items (not a parameter).
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?
One short sentence, front-loaded with the verb and resource, no wasted words.
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?
For a no-param mutation with no annotations and no output schema, the description is minimally adequate but leaves the agent without key context: prerequisite selection, reversibility, and differentiation from delete_item.
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?
Zero parameters, so baseline 4 applies. The description correctly notes the input comes from the current selection rather than a parameter.
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?
Clear verb+resource: deletes items that are currently selected. The dependence on prior selection distinguishes it from delete_item (which presumably targets a specified item), though it doesn't explicitly name that alternative.
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?
No guidance on when to use this versus delete_item, clear_midi_item, or other deletion siblings. The only implied context is that a selection must exist, which is not stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.