Enables creating and managing Anki flashcards through natural language commands, supporting basic question-answer cards, language learning cards with examples, automatic tag addition, and deck management (viewing, creating, and searching decks).
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Anki MCP ServerCreate a flashcard for the Spanish word 'casa' with its English translation and an example sentence"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
anki-mcp-server
Read this in other languages: English, 한국어
A Model Context Protocol (MCP) server that connects Claude and Anki, allowing you to create, manage, and enrich flashcard decks through natural language — without ever opening the Anki UI.
Requirements
Python 3.9 or higher
Anki 2.1.x or higher
AnkiConnect add-on
Claude Desktop (or any MCP-compatible client)
Related MCP server: Anki MCP Server
Installation
1. Set up Anki and AnkiConnect
Install Anki.
Install the AnkiConnect add-on:
In Anki, go to
Tools > Add-ons > Get Add-onsEnter code
2055492159and click OKRestart Anki
Verify it works by visiting
http://localhost:8765— you should seeAnkiConnect v.6.
2. Install anki-mcp-server
git clone https://github.com/dhkim0124/anki-mcp-server.git
cd anki-mcp-server
python -m venv venv
source venv/bin/activate # Windows: venv\Scripts\activate
pip install -r requirements.txt3. Configure Claude Desktop
Edit your Claude Desktop config file:
Windows:
%APPDATA%\Claude\claude_desktop_config.jsonmacOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonLinux:
~/.config/Claude/claude_desktop_config.json
{
"mcpServers": {
"anki-mcp": {
"command": "python",
"args": ["/absolute/path/to/anki_server.py"]
}
}
}Usage
With Anki running in the background, you can ask Claude things like:
"Create a Python deck with Code style and add 10 cards about decorators"
"Show me my decks and their stats"
"Search for cards tagged 'sql' and update the one about indexes"
"Create a custom dark-mode deck with fields: Word, Definition, Example, Audio"
"Upload this image and attach it to a new card in my Biology deck"
"Sync my collection with AnkiWeb"
The server guides the conversation — it asks clarifying questions about deck, style, and card type before creating anything, and always asks for confirmation before destructive operations.
Available Tools
Deck Management
Tool | Description |
| List all decks with stats (total, new, due, learning cards) |
| Create a new deck (supports nested decks with |
| Delete a deck — requires explicit confirmation |
Card Operations
Tool | Description |
| Create a single Basic card (front/back) |
| Create multiple cards in one call |
| Create a card using a custom note type, with optional audio/image attachments |
| Search using Anki's query syntax (tags, text, deck filters) |
| Edit fields and tags of an existing card |
| Delete one or more cards — requires explicit confirmation |
Note Types & Styling
Tool | Description |
| Create a custom note type with chosen fields, CSS style, and HTML templates |
| List all available note types and their fields |
| Update the CSS of an existing note type |
| Update the HTML templates of an existing note type |
Media & Sync
Tool | Description |
| Upload an image or audio file (base64) to Anki's media folder |
| Sync your local collection with AnkiWeb |
Style Templates
Four built-in styles are available via the style parameter in create_note_type:
Style | Key | Best for |
Default |
| General use |
Duolingo |
| Language learning, gamified feel |
Dark Mode |
| Night studying, reduced eye strain |
Code |
| Programming, algorithms |
Custom |
| Full control — you provide the CSS |
For custom style, describe what you want in natural language and Claude generates the CSS:
"Dark blue background, mint green accents, smooth fade-in animation"
All custom CSS is validated to block javascript: URLs, <script> tags, and inline event handlers before being sent to Anki.
Project Structure
anki-mcp-server/
├── anki_server.py # MCP tool definitions and AnkiConnect client
├── config.py # Constants: URL, API version, media limits
├── instructions.py # LLM system instructions for conversational behavior
├── templates.py # Built-in CSS themes, CSS validation, HTML generators
└── tests/
├── test_anki_server.py # Tests for all tools (mocked AnkiConnect)
└── test_templates.py # Tests for template logic and CSS validationRunning Tests
pip install pytest pytest-asyncio
pytest tests/ -vAll tests mock AnkiConnect via httpx — no running Anki instance required.
Troubleshooting
Anki must be open: The MCP server requires Anki to be running.
AnkiConnect not responding: Visit
http://localhost:8765to confirm it's active.Windows firewall: You may need to allow Anki through the firewall for AnkiConnect to work.
Restart everything: If issues persist, restart Anki, Claude Desktop, and re-check the config file path.
Contributing
Fork the repository and open a pull request. Contributions are welcome in:
New card types or template styles
Additional language support
Interface and UX improvements
Documentation
License
MIT License — see LICENSE for details.
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.