deck_deleteDecks
Delete specified Anki decks and their associated cards by providing deck names and confirming card deletion. Streamlines deck management within Anki-MCP server.
Instructions
Deletes decks with the given names. The 'cardsToo' argument must be specified and set to true.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cardsToo | Yes | Must be true to confirm deletion of cards within the decks. | |
decks | Yes | A list of deck names to delete. |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"cardsToo": {
"description": "Must be true to confirm deletion of cards within the decks.",
"title": "Cardstoo",
"type": "boolean"
},
"decks": {
"description": "A list of deck names to delete.",
"items": {
"type": "string"
},
"title": "Decks",
"type": "array"
}
},
"required": [
"decks",
"cardsToo"
],
"type": "object"
}