gui_select_note
Select a specific note in the Anki MCP server by providing its unique ID, enabling precise navigation and management of study materials.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
noteId | Yes | ID of the note to select |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"noteId": {
"description": "ID of the note to select",
"type": "number"
}
},
"required": [
"noteId"
],
"type": "object"
}