card_reviews
Fetch card reviews from a specified deck in Anki MCP, starting from a given Unix time, to track and manage learning progress efficiently.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
deck | Yes | Name of the deck to get reviews for | |
startID | Yes | Latest unix time not included in the result |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"deck": {
"description": "Name of the deck to get reviews for",
"type": "string"
},
"startID": {
"description": "Latest unix time not included in the result",
"type": "number"
}
},
"required": [
"deck",
"startID"
],
"type": "object"
}