Skip to main content
Glama

Anki MCP Server

by ethangillani
example-requests.json3.26 kB
[ { "description": "List all decks", "request": { "name": "listDecks", "arguments": {} } }, { "description": "List all note models", "request": { "name": "listModels", "arguments": {} } }, { "description": "Create a new deck", "request": { "name": "createDeck", "arguments": { "name": "Science Facts" } } }, { "description": "Get details about a note model", "request": { "name": "getModel", "arguments": { "modelName": "Basic" } } }, { "description": "Add a single note (flashcard)", "request": { "name": "addNote", "arguments": { "deckName": "Science Facts", "modelName": "Basic", "fields": { "Front": "What is the chemical symbol for gold?", "Back": "Au (from the Latin 'aurum')" }, "tags": ["chemistry", "elements"] } } }, { "description": "Add multiple notes at once", "request": { "name": "addNotes", "arguments": { "notes": [ { "deckName": "Science Facts", "modelName": "Basic", "fields": { "Front": "What is the chemical symbol for silver?", "Back": "Ag (from the Latin 'argentum')" }, "tags": ["chemistry", "elements"] }, { "deckName": "Science Facts", "modelName": "Basic", "fields": { "Front": "What is the chemical symbol for iron?", "Back": "Fe (from the Latin 'ferrum')" }, "tags": ["chemistry", "elements"] }, { "deckName": "Science Facts", "modelName": "Basic", "fields": { "Front": "What is the chemical symbol for copper?", "Back": "Cu (from the Latin 'cuprum')" }, "tags": ["chemistry", "elements"] } ] } } }, { "description": "Search for notes with specific tags", "request": { "name": "searchNotes", "arguments": { "query": "tag:chemistry" } } }, { "description": "Search for notes in a specific deck", "request": { "name": "searchNotes", "arguments": { "query": "deck:\"Science Facts\"" } } }, { "description": "Add a cloze deletion note", "request": { "name": "addNote", "arguments": { "deckName": "Science Facts", "modelName": "Cloze", "fields": { "Text": "The three states of matter are {{c1::solid}}, {{c2::liquid}}, and {{c3::gas}}.", "Back Extra": "Some substances like plasma are considered a fourth state of matter." }, "tags": ["physics", "states-of-matter"] } } }, { "description": "Create a basic reversed card (both directions)", "request": { "name": "addNote", "arguments": { "deckName": "Language Learning", "modelName": "Basic (and reversed card)", "fields": { "Front": "bonjour", "Back": "hello" }, "tags": ["french", "greetings"] } } } ]

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/ethangillani/Anki-MCP-Server'

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