anki_add_notes
Add multiple flashcards to a specified Anki deck programmatically using structured input, enabling efficient management of study materials through the Anki MCP Server.
Instructions
Add multiple flashcards to an Anki deck
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cards | Yes | ||
deckName | Yes | The target deck name |
Input Schema (JSON Schema)
{
"properties": {
"cards": {
"items": {
"properties": {
"back": {
"type": "string"
},
"front": {
"type": "string"
}
},
"required": [
"front",
"back"
],
"type": "object"
},
"type": "array"
},
"deckName": {
"description": "The target deck name",
"type": "string"
}
},
"required": [
"deckName",
"cards"
],
"type": "object"
}