Skip to main content
Glama

get_num_cards_reviewed_by_day

Track daily Anki card reviews with this tool, providing insights into study habits and progress for effective learning management.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • Registers the MCP tool 'get_num_cards_reviewed_by_day' with empty input schema. The inline handler fetches daily card review counts via ankiClient.statistic.getNumCardsReviewedByDay() (AnkiConnect API) and returns formatted JSON output in text content blocks.
    server.tool('get_num_cards_reviewed_by_day', {}, async () => { try { const reviewsByDay = await ankiClient.statistic.getNumCardsReviewedByDay(); return { content: [ { type: 'text', text: `Cards reviewed by day (${reviewsByDay.length} days):`, }, { type: 'text', text: JSON.stringify(reviewsByDay, null, 2), }, ], }; } catch (error) { throw new Error( `Failed to get cards reviewed by day: ${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