Anki MCP Server

batch_create_notes

Create multiple notes at once

Input Schema

NameRequiredDescriptionDefault
notesYes
stopOnErrorNoWhether to stop on first error

Input Schema (JSON Schema)

{ "properties": { "notes": { "items": { "properties": { "back": { "type": "string" }, "backExtra": { "type": "string" }, "deck": { "type": "string" }, "fields": { "additionalProperties": true, "type": "object" }, "front": { "type": "string" }, "tags": { "items": { "type": "string" }, "type": "array" }, "text": { "type": "string" }, "type": { "enum": [ "Basic", "Cloze" ], "type": "string" } }, "required": [ "type", "deck" ], "type": "object" }, "type": "array" }, "stopOnError": { "description": "Whether to stop on first error", "type": "boolean" } }, "required": [ "notes" ], "type": "object" }