mcp-svstudio

Apache 2.0
  • Apple

add_notes

Add one or more notes to a track

Input Schema

NameRequiredDescriptionDefault
notesYesArray of notes to add
trackIdYesID of the track

Input Schema (JSON Schema)

{ "properties": { "notes": { "description": "Array of notes to add", "items": { "properties": { "duration": { "description": "Duration in ticks", "type": "number" }, "lyrics": { "description": "Lyrics text for the note", "type": "string" }, "pitch": { "description": "MIDI pitch (0-127)", "type": "number" }, "startTime": { "description": "Start time in ticks", "type": "number" } }, "required": [ "lyrics", "startTime", "duration", "pitch" ], "type": "object" }, "type": "array" }, "trackId": { "description": "ID of the track", "type": "string" } }, "required": [ "trackId", "notes" ], "type": "object" }
ID: bm67u9m0ww