gui_select_card
Select a specific card by its ID in the Anki MCP server to streamline card management and ensure precise targeting for study or modification tasks.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cardId | Yes | ID of the card to select |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"cardId": {
"description": "ID of the card to select",
"type": "number"
}
},
"required": [
"cardId"
],
"type": "object"
}