edit_notes
Modify one or multiple notes in a vocal track on the MCP server for Synthesizer V AI. Adjust lyrics, pitch, start time, and duration for precise editing.
Instructions
Edit one or more notes
Input Schema
Name | Required | Description | Default |
---|---|---|---|
notes | Yes | Array of notes to edit | |
trackId | Yes | ID of the track |
Input Schema (JSON Schema)
{
"properties": {
"notes": {
"description": "Array of notes to edit",
"items": {
"properties": {
"duration": {
"description": "Duration in ticks",
"type": "number"
},
"id": {
"description": "The ID of the note",
"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": [
"id"
],
"type": "object"
},
"type": "array"
},
"trackId": {
"description": "ID of the track",
"type": "string"
}
},
"required": [
"trackId",
"notes"
],
"type": "object"
}