Skip to main content
Glama

plan_midi_strum_pattern

Read-only

Create deterministic strum patterns for MIDI chords—up, down, or alternating—while keeping all selected note endings intact.

Instructions

Plan deterministic up, down, or alternating chord attacks while preserving every selected note end.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
clipIdYesStable clip ID: track-N:clip-M from list_clips, or track-N:arrangement-clip-M from list_arrangement_clips for tools that support Arrangement clips.
noteIdsYesUnique stable note IDs at complete chord onsets.
trackIdYesStable track ID returned by list_tracks.
directionYesPitch order for each chord; alternating starts upward and reverses on each following onset.
spreadBeatsYesTotal beat distance from the first to last attack in each chord.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.1/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, and the description's 'plan' verb aligns with that. It adds the behavioral constraint 'preserving every selected note end', which is useful, but it does not disclose what the plan returns or how it relates to the apply counterpart. No contradiction with annotations.

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?

A single front-loaded sentence with no filler; efficient and scannable. It earns its place, though it is arguably a touch terse given the tool's complexity.

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?

For a planning tool with five required parameters and no output schema, the description omits the critical plan-then-apply workflow and the meaning of the tool's return value. An agent cannot tell what to do with the plan result or that apply_midi_strum_pattern is the execution counterpart.

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

Parameters3/5

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

Schema description coverage is 100%, so the schema fully documents all five parameters. The description echoes the direction enum (up/down/alternating) and implies note selection, but adds no syntax or format detail beyond what the schema already provides; baseline 3 is appropriate.

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

Purpose4/5

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

States a specific verb (plan) and resource (chord attacks / strum pattern) with the three directional modes and a constraint (preserving note ends). It is clearly distinct from applying, but it does not explain what a 'plan' produces versus what the sibling apply_midi_strum_pattern does, leaving some ambiguity about its exact role.

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 on when to call this planning tool versus the sibling apply_midi_strum_pattern, nor on the expected workflow of planning then applying. No exclusions, prerequisites, or alternatives are mentioned; an agent must infer the plan-then-apply pattern 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.

Deploy Server

Other Tools