Skip to main content
Glama

mcp_opendaw_create_notes_batch

Batch create multiple MIDI notes in one call for melodies, chords, and arpeggios. Reduces round-trips by placing all notes into a single region.

Instructions

Create multiple MIDI notes in a single call — batch creation for melodies, chords, arpeggios.

notes: JSON array of note objects, each with:

  • pitch (int): MIDI note number (60 = C4, 69 = A4)

  • start (float): beat position

  • duration (float): note length in beats

  • velocity (float, optional): 0.0-1.0, default 0.8

Example: '[{"pitch":60,"start":0,"duration":0.5},{"pitch":64,"start":0.5,"duration":0.5},{"pitch":67,"start":1,"duration":1}]'

All notes go into one region on the specified note track. If no region exists, one is created. Faster than calling create_note repeatedly — one round-trip, one editing.modify() block.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
notesYes
unit_indexNo
track_indexNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes
Behavior3/5

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

No annotations are provided, so the description must disclose behavior. It states 'All notes go into one region on the specified note track. If no region exists, one is created,' which is useful. However, it does not disclose whether existing notes in the region are overwritten, appended, or how errors like invalid JSON are handled, leaving notable behavioral gaps.

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 well-structured: purpose first, then parameter details, an example, and a behavioral note. It is a bit longer than strictly necessary, but each section adds value and the format is scannable. Nothing is redundant.

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?

The tool has 3 parameters (one required string containing JSON) and an output schema. The description covers purpose, usage, the main parameter, and basic behavior. Missing are explanations of unit_index, handling of empty/invalid notes arrays, and whether existing region contents are affected. Given the absence of annotations, these gaps reduce completeness.

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 0%, so the description must compensate. It thoroughly explains the 'notes' parameter with field breakdown (pitch, start, duration, velocity), defaults, and an example. However, it only implicitly refers to 'track_index' and does not explain 'unit_index' at all, so not all parameters are semantically covered.

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 action: 'Create multiple MIDI notes in a single call — batch creation for melodies, chords, arpeggios.' It distinguishes from siblings like mcp_opendaw_create_note by emphasizing batch creation. The target resource (MIDI notes on a track) is explicit.

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

Usage Guidelines5/5

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

The description explicitly names the alternative (create_note) and gives a concrete reason to prefer this tool: 'Faster than calling create_note repeatedly — one round-trip, one editing.modify() block.' It also indicates when the tool is appropriate (melodies, chords, arpeggios), providing clear usage context.

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/ameobius-ai/opendaw-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server