note_updateNoteFields
Update specific fields of an existing Anki note using the 'anki-mcp' server. Modify text, audio, video, or picture content to refine and enhance flashcard details efficiently.
Instructions
Modifies the fields of an existing note.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
note | Yes | A dictionary representing the note to update. Must include 'id' and 'fields'. Optionally 'audio', 'video', or 'picture'. |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"note": {
"additionalProperties": true,
"description": "A dictionary representing the note to update. Must include 'id' and 'fields'. Optionally 'audio', 'video', or 'picture'.",
"title": "Note",
"type": "object"
}
},
"required": [
"note"
],
"type": "object"
}