note_addNote
Add a new note to an Anki deck using specified fields, model, and tags. Enables structured flashcard creation with AnkiConnect integration.
Instructions
Creates a new note using the given deck, model, fields, and tags. Returns the ID of the created note or null if the note could not be created.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
note | Yes | A dictionary representing the note to add. Should include 'deckName', 'modelName', 'fields', and optionally 'tags', 'options', 'audio', 'video', 'picture'. |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"note": {
"additionalProperties": true,
"description": "A dictionary representing the note to add. Should include 'deckName', 'modelName', 'fields', and optionally 'tags', 'options', 'audio', 'video', 'picture'.",
"title": "Note",
"type": "object"
}
},
"required": [
"note"
],
"type": "object"
}