gui_start_card_timer
Start the card timer in the Anki MCP interface to track study session durations. Initiate timed card reviews for efficient progress monitoring.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/graphical.ts:398-414 (handler)MCP tool registration and handler for 'gui_start_card_timer'. It calls ankiClient.graphical.guiStartCardTimer() to start the card timer in Anki and returns a success message.server.tool('gui_start_card_timer', {}, async () => { try { const result = await ankiClient.graphical.guiStartCardTimer(); return { content: [ { type: 'text', text: `Successfully started card timer. Result: ${result}`, }, ], }; } catch (error) { throw new Error( `Failed to start card timer: ${error instanceof Error ? error.message : String(error)}` ); } });