anki_create_deck
Create a new Anki deck programmatically using the Model Context Protocol. Specify the deck name to manage flashcards and organize study materials efficiently.
Instructions
Create a new Anki deck
Input Schema
Name | Required | Description | Default |
---|---|---|---|
deckName | Yes | The name of the deck to create |
Input Schema (JSON Schema)
{
"properties": {
"deckName": {
"description": "The name of the deck to create",
"type": "string"
}
},
"required": [
"deckName"
],
"type": "object"
}