gui_deck_overview
View detailed overview of a specific Anki deck by providing the deck name. Simplifies deck management and progress tracking within the Anki MCP server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
deckName | Yes | Name of the deck to view overview for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"deckName": {
"description": "Name of the deck to view overview for",
"type": "string"
}
},
"required": [
"deckName"
],
"type": "object"
}