anki_add_note
Add flashcards to Anki decks programmatically by specifying the deck name, front, and back content for efficient and automated card creation.
Instructions
Add a flashcard to an Anki deck
Input Schema
Name | Required | Description | Default |
---|---|---|---|
back | Yes | Back of the flashcard | |
deckName | Yes | The target deck name | |
front | Yes | Front of the flashcard |
Input Schema (JSON Schema)
{
"properties": {
"back": {
"description": "Back of the flashcard",
"type": "string"
},
"deckName": {
"description": "The target deck name",
"type": "string"
},
"front": {
"description": "Front of the flashcard",
"type": "string"
}
},
"required": [
"deckName",
"front",
"back"
],
"type": "object"
}