MCP-AnkiConnect

add_note

Add a flashcard to Anki. Ensure you have looked at examples before you do this, and that you have got approval from the user to add the flashcard. Args: deckName: str - The name of the deck to add the flashcard to. modelName: str - The name of the note type to use. fields: dict - The fields of the flashcard to add. tags: List[str] - The tags to add to the flashcard.

Input Schema

NameRequiredDescriptionDefault
deckNameYes
fieldsYes
modelNameYes
tagsNo

Input Schema (JSON Schema)

{ "properties": { "deckName": { "title": "Deckname", "type": "string" }, "fields": { "additionalProperties": { "type": "string" }, "title": "Fields", "type": "object" }, "modelName": { "title": "Modelname", "type": "string" }, "tags": { "items": { "type": "string" }, "title": "Tags", "type": "array" } }, "required": [ "deckName", "modelName", "fields" ], "title": "add_noteArguments", "type": "object" }