get_collection_stats_html
Generate HTML-formatted statistics for Anki decks. Use this tool to analyze study progress by retrieving detailed metrics for either specific decks or the entire collection.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
wholeCollection | Yes | Whether to get stats for the whole collection |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"wholeCollection": {
"description": "Whether to get stats for the whole collection",
"type": "boolean"
}
},
"required": [
"wholeCollection"
],
"type": "object"
}