Anki MCP Server

update_note

Update an existing note

Input Schema

NameRequiredDescriptionDefault
fieldsYesFields to update
idYesNote ID
tagsNoNew tags for the note

Input Schema (JSON Schema)

{ "properties": { "fields": { "description": "Fields to update", "type": "object" }, "id": { "description": "Note ID", "type": "number" }, "tags": { "description": "New tags for the note", "items": { "type": "string" }, "type": "array" } }, "required": [ "id", "fields" ], "type": "object" }