MCP-AnkiConnect

submit_reviews

Submit multiple card reviews to Anki.

Args: reviews: List of dictionaries containing: - card_id (int): The ID of the card being reviewed - rating (str): The rating to give the card, one of: "wrong" - Card was incorrect (Again) "hard" - Card was difficult (Hard) "good" - Card was good (Good) "easy" - Card was very easy (Easy)

Input Schema

NameRequiredDescriptionDefault
reviewsYes

Input Schema (JSON Schema)

{ "properties": { "reviews": { "items": { "additionalProperties": { "anyOf": [ { "type": "integer" }, { "enum": [ "wrong", "hard", "good", "easy" ], "type": "string" } ] }, "propertyNames": { "enum": [ "card_id", "rating" ] }, "type": "object" }, "title": "Reviews", "type": "array" } }, "required": [ "reviews" ], "title": "submit_reviewsArguments", "type": "object" }