Skip to main content
Glama

gui_deck_review

Start reviewing a specific flashcard deck in Anki by providing the deck name. This tool integrates with Anki MCP to streamline the review process.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
deckNameYesName of the deck to start reviewing

Implementation Reference

  • Registers the MCP tool 'gui_deck_review' with Zod input schema for deckName and an inline async handler function that delegates to ankiClient.graphical.guiDeckReview({ name: deckName }) to open the deck review in Anki's GUI, returning a success message or throwing an error.
    server.tool( 'gui_deck_review', { deckName: z.string().describe('Name of the deck to start reviewing'), }, async ({ deckName }) => { try { const result = await ankiClient.graphical.guiDeckReview({ name: deckName }); return { content: [ { type: 'text', text: `Successfully started review for deck "${deckName}". Result: ${result}`, }, ], }; } catch (error) { throw new Error( `Failed to start deck review: ${error instanceof Error ? error.message : String(error)}` ); } } );

Other Tools

Related Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/arielbk/anki-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server