MCP-AnkiConnect

fetch_due_cards_for_review

Fetch cards that are due for learning and format them for review. Takes optional arguments: - deck: str - Filter by specific deck. - limit: int - Maximum number of cards to fetch (default 5). More than 5 is overwhelming for users. - today_only: bool - If true, only fetch cards due today, else fetch cards up to 5 days ahead.

Input Schema

NameRequiredDescriptionDefault
deckNo
limitNo
today_onlyNo

Input Schema (JSON Schema)

{ "properties": { "deck": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Deck" }, "limit": { "default": 5, "title": "Limit", "type": "integer" }, "today_only": { "default": true, "title": "Today Only", "type": "boolean" } }, "title": "fetch_due_cards_for_reviewArguments", "type": "object" }