check_cards_due
Identify cards with upcoming review dates by providing an array of card IDs, helping users manage their study schedule on the Anki MCP server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cardIds | Yes | Array of card IDs to check |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"cardIds": {
"description": "Array of card IDs to check",
"items": {
"type": "number"
},
"type": "array"
}
},
"required": [
"cardIds"
],
"type": "object"
}