card_cardsModTime
Retrieve modification timestamps for specified Anki flashcard IDs using the 'card_cardsModTime' tool, enabling efficient tracking of card updates within the anki-mcp server.
Instructions
Returns modification time for each card ID provided. Result is a list of objects with 'cardId' and 'modTime' (timestamp).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cards | Yes | A list of card IDs. |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"cards": {
"description": "A list of card IDs.",
"items": {
"type": "integer"
},
"title": "Cards",
"type": "array"
}
},
"required": [
"cards"
],
"type": "object"
}