gui_edit_note
Edit Anki notes directly using the specified note ID, enabling quick updates and modifications to study content within the Anki MCP server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
noteId | Yes | ID of the note to edit |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"noteId": {
"description": "ID of the note to edit",
"type": "number"
}
},
"required": [
"noteId"
],
"type": "object"
}