Skip to main content
Glama
ctjmaxwell

Anki Flashcard MCP

by ctjmaxwell

add_multiple_anki_notes

Add a batch of Anki notes to a deck in one operation. Specify notes with front/back content and optional tags for bulk flashcard creation.

Instructions

    Adds a BATCH of multiple Anki notes in a single, efficient operation. Use this for adding more than one card at once.

    :param deck: The name of the deck to add the notes to.
    :param notes: A list of notes to add. Each note should be a dictionary with "Front" and "Back" keys.
    :param tags: A list of tags to add to every note in the batch.
    

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
deckYes
tagsNo
notesYes
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

There are no annotations provided, so the description carries the full burden of behavioral disclosure. It claims efficiency but doesn't describe edge behaviors: what happens on partial failure, duplicate detection, whether notes are validated, or what gets returned. For a batch mutation tool with zero annotation coverage, this is a significant transparency gap.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact with three focused param sections and a clear purpose statement up front. No wasted sentences, though the docstring format adds some formatting noise.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a 3-param batch operation, the description covers the parameters and usage intent well, but with no output schema and no annotations, it should disclose what the batch operation returns (e.g., note IDs, error report) and how failures are handled. This is a moderate gap for a batch mutation tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate and does so well. It explains that each note dictionary should contain 'Front' and 'Back' keys and that tags apply to 'every note in the batch' — meaning beyond the bare schema definition of notes as opaque objects.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states verb+resource: adds a BATCH of multiple Anki notes. It distinguishes from the sibling by emphasizing 'single efficient operation' and 'more than one card at once', which differentiates it from add_anki_note.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description says 'Use this for adding more than one card at once', which gives clear usage context and implicitly contrasts with the single-note sibling tool. However, it doesn't explicitly state when NOT to use it or mention any alternative for adding a single card.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/ctjmaxwell/anki-flashcard-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server