anki_create_deck
Generate and manage new Anki flashcard decks using the MCP server. Input the deck name to create a personalized deck for efficient learning and organization.
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"
}