get_cards_mod_time
Retrieve the modification timestamps for specified card IDs in Anki MCP. Use this tool to track changes and manage card updates efficiently.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cardIds | Yes | Array of card IDs to get modification time for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"cardIds": {
"description": "Array of card IDs to get modification time for",
"items": {
"type": "number"
},
"type": "array"
}
},
"required": [
"cardIds"
],
"type": "object"
}