Integrates with Anki flashcards to provide card creation and deck management capabilities.
まだレビューはありません. 最初のレビューを投稿しましょう!
会話に参加するにはサインインしてください
Creates a new Anki deck. Parameters: name (string) - Name for the new deck.
Creates a new note in a specified deck. Supports HTML formatting and media attachments. Parameters: deckName (string) - Name of the deck to add the note to, front (string) - Front side content of the note (supports HTML), back (string) - Back side content of the note (supports HTML), tags (optional array) - Array of tags for the note, frontImages (optional array) - Array of image URLs for the front, backImages (optional array) - Array of image URLs for the back, frontAudio (optional array) - Array of audio URLs for the front, backAudio (optional array) - Array of audio URLs for the back.
Creates a new cloze note in a specified deck. Supports HTML formatting and media attachments. Parameters: deckName (string) - Name of the deck to add the note to, text (string) - Text containing cloze deletions using {{c1::text}} syntax (supports HTML), backExtra (optional string) - Extra information to show on the back of the card (supports HTML), tags (optional array) - Array of tags for the note, textImages (optional array) - Array of image URLs for the text field, backImages (optional array) - Array of image URLs for the back extra field, textAudio (optional array) - Array of audio URLs for the text field, backAudio (optional array) - Array of audio URLs for the back extra field.
Creates many basic notes in one request. Parameters: deckName (string) - Name of the deck to add the notes to, cards (array) - Array of { front, back, tags? } objects (at least one).
Creates many cloze notes in one request. Parameters: deckName (string) - Name of the deck to add the notes to, cards (array) - Array of { text, backExtra?, tags? } objects (at least one).
Updates an existing note. Parameters: noteId (string) - ID of the note to update, front (optional string) - New front side content, back (optional string) - New back side content, tags (optional array) - New tags for the note.
Updates an existing cloze note. Parameters: noteId (string) - ID of the note to update, text (optional string) - New text with cloze deletions, backExtra (optional string) - New extra information for the back, tags (optional array) - New tags for the note.
Searches for notes with Anki's query syntax and returns their note IDs, note type, tags, and a short excerpt of each field. Parameters: query (string) - Anki search query, e.g. 'deck:Spanish', 'tag:vocab', 'deck:Spanish tag:verbs'.
Permanently deletes notes. This cannot be undone. Parameters: noteIds (array) - IDs of the notes to delete, at most 50 per call, confirm (boolean) - Must be true.