Update Anki Note
anki_update_noteEdit the fields and tags of an existing Anki note by providing its ID and new content.
Instructions
Use when the user wants to edit the fields or replace the tags of an existing note. Do not use when the user only wants to inspect note content (use anki_get_note_info) or delete it (use anki_delete_note). Safety: confirm with the user before overwriting note content.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Positive Anki note ID. | |
| tags | No | Replacement tag list. Pass an empty array to clear tags. | |
| fields | No | Note fields keyed by exact model field names. For Basic: {Front: 'question', Back: 'answer'}. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| noteId | Yes | ||
| success | Yes | ||
| updatedTags | Yes | ||
| updatedFields | Yes |