anki_add_notes
Create multiple Anki notes simultaneously for one deck and note type. Specify HTML fields, tags, and duplicate handling to streamline bulk note entry.
Instructions
Add several notes at once, sharing one deck and note type.
Field values are HTML and are sent verbatim — do not escape them.
See anki_add_note for the field/cloze conventions; they apply per item.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tags | No | Default tags, applied to every note that has no own `"tags"`. | |
| notes | Yes | One entry per note, each a dict with: - `"fields"` (required): field name -> HTML content. - `"tags"` (optional): tags for this note, replacing `tags`. | |
| deck_name | Yes | Target deck for every note in the batch. | |
| model_name | Yes | Note type for every note in the batch. | |
| allow_duplicate | No | Allow notes whose first field already exists. | |
| response_format | No | How a tool should render its result. A `StrEnum` so the members compare equal to the plain strings a client sends over the wire (`"markdown"`, `"json"`). | markdown |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |