MCP-AnkiConnect

get_examples

Get example notes from Anki to guide your flashcard making. Limit the number of examples returned and provide a sampling technique:

- random: Randomly sample notes - recent: Notes added in the last week - most_reviewed: Notes with more than 10 reviews - best_performance: Notes with less than 3 lapses - mature: Notes with interval greater than 21 days - young: Notes with interval less than 7 days

Input Schema

NameRequiredDescriptionDefault
deckNo
limitNo
sampleNorandom

Input Schema (JSON Schema)

{ "properties": { "deck": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Deck" }, "limit": { "default": 5, "minimum": 1, "title": "Limit", "type": "integer" }, "sample": { "default": "random", "pattern": "^(random|recent|most_reviewed|best_performance|mature|young)$", "title": "Sample", "type": "string" } }, "title": "get_examplesArguments", "type": "object" }