gui_add_cards
Add structured notes to a specified Anki deck using a chosen note model, populate fields, and assign tags for organized study material
Input Schema
Name | Required | Description | Default |
---|---|---|---|
deckName | Yes | Name of the deck to add the note to | |
fields | Yes | Object with field names as keys and field content as values | |
modelName | Yes | Name of the note model/type | |
tags | No | Array of tags to add to the note |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"deckName": {
"description": "Name of the deck to add the note to",
"type": "string"
},
"fields": {
"additionalProperties": {
"type": "string"
},
"description": "Object with field names as keys and field content as values",
"type": "object"
},
"modelName": {
"description": "Name of the note model/type",
"type": "string"
},
"tags": {
"description": "Array of tags to add to the note",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"deckName",
"modelName",
"fields"
],
"type": "object"
}