Anki Connect MCP Server
Integrates with Anki via the AnkiConnect add-on to manage flashcards, decks, cards, tags, and GUI operations in Anki.
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 Connect MCP ServerCreate a new card in my Japanese deck with front '犬' and back 'dog'."
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 Connect MCP Server
A Model Context Protocol (MCP) server that provides seamless integration with Anki through the AnkiConnect add-on. This server enables AI assistants and other MCP clients to interact with your Anki flashcard collection programmatically.

What is Anki Connect?
AnkiConnect is a powerful Anki add-on that exposes Anki's functionality through a REST API. It allows external applications to:
Create, modify, and delete flashcards
Manage decks and their configurations
Control Anki's GUI programmatically
Search and retrieve card information
Manage tags and note types
Perform bulk operations on cards and notes
Related MCP server: Anki MCP
What is MCP (Model Context Protocol)?
The Model Context Protocol is a standardized way for AI assistants to connect to external data sources and tools. This MCP server acts as a bridge between MCP clients (like Claude Desktop) and AnkiConnect, allowing AI assistants to help you manage your Anki flashcards naturally through conversation.
Features
This MCP server provides comprehensive access to AnkiConnect functionality through the following tools:
Flashcard Management
create_flashcard()- Create new flashcards with front and back contentadd_note()- Add notes with custom fields and tagsadd_notes()- Bulk add multiple notesupdate_note_fields()- Update existing note fieldsfind_notes()- Search for notes using Anki's query syntax
Deck Management
deck_names()- Get all deck namesdeck_names_and_ids()- Get deck names with their IDschange_deck()- Move cards between decksdelete_decks()- Delete decks and optionally their cardsget_deck_config()- Retrieve deck configuration settings
Card Operations
find_cards()- Search for cardscards_info()- Get detailed card informationsuspend()/unsuspend()- Suspend/unsuspend cardsare_suspended()/are_due()- Check card status
GUI Control
gui_deck_browser()- Open deck browsergui_deck_review()- Start deck reviewgui_browse()- Open card browser with searchgui_add_cards()- Open add cards dialog
Utility Tools
version()- Get AnkiConnect versionget_tags()- Retrieve all tagsmulti()- Execute multiple AnkiConnect requests in batch
Prerequisites
1. Install AnkiConnect Add-on
Open Anki
Go to Tools → Add-ons
Click Get Add-ons...
Enter the code:
2055492159Click OK and restart Anki
2. Configure AnkiConnect (Optional)
AnkiConnect works out of the box, but you can customize its settings:
Go to Tools → Add-ons
Select AnkiConnect and click Config
Modify settings if needed (default port is 8765)
Restart Anki after making changes
Installation
Clone this repository:
git clone https://github.com/spacholski1225/anki-connect-mcp.git
cd anki-connect-mcpInstall dependencies:
npm installBuild the project:
npm run buildMCP Client Configuration
Claude Desktop
To use this MCP server with Claude Desktop, add the following configuration to your MCP settings file:
Location of MCP configuration file:
Windows:
%APPDATA%\Claude\claude_desktop_config.jsonmacOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonLinux:
~/.config/Claude/claude_desktop_config.json
Configuration Options:
Option 1: Using Node.js (Local Installation)
{
"mcpServers": {
"anki-connect-mcp": {
"command": "node",
"args": [
"dist/index.js"
],
"env": {},
"disabled": false,
"alwaysAllow": [
"deck_names",
"cards_info",
"deck_names_and_ids",
"gui_deck_browser"
]
}
}
}Option 2: Using npx (NPM Package)
Then configure your MCP client:
{
"mcpServers": {
"anki-connect": {
"command": "npx",
"args": [
"@spacholski1225/anki-connect-mcp"
],
"env": {},
"disabled": false,
"alwaysAllow": [
"deck_names",
"cards_info",
"deck_names_and_ids",
"gui_deck_browser"
]
}
}
}Option 3: Using Docker
{
"mcpServers": {
"anki-connect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--network=host",
"-e", "ANKI_CONNECT_URL=http://host.docker.internal:8765",
"spacholski/anki-connect-mcp:latest"
],
"env": {},
"disabled": false,
"alwaysAllow": [
"deck_names",
"cards_info",
"deck_names_and_ids",
"gui_deck_browser"
]
}
}
}Docker-Specific AnkiConnect Configuration:
When using the Docker option, you must configure AnkiConnect with specific settings to allow Docker container access:
Go to Tools → Add-ons in Anki
Select AnkiConnect and click Config
Update the configuration with the following settings:
{
"apiKey": null,
"apiLogPath": null,
"ignoreOriginList": [],
"webBindAddress": "0.0.0.0",
"webBindPort": 8765,
"webCorsOriginList": [
"http://localhost",
"http://host.docker.internal",
"http://host.docker.internal:3000"
]
}Key Docker Configuration Points:
webBindAddress: "0.0.0.0"- Allows AnkiConnect to accept connections from any IP address (required for Docker containers)webCorsOriginList- Must include"http://host.docker.internal"and related origins to allow cross-origin requests from Docker containersRestart Anki after making these configuration changes
Important Notes:
For Node.js option: Replace the path in
argswith the actual path to your builtindex.jsfileFor npx option: Uses the published NPM package
@spacholski1225/anki-connect-mcp- no local installation requiredFor Docker option: Uses the pre-built Docker image
spacholski/anki-connect-mcp:latestThe
alwaysAllowarray contains tools that won't require confirmation each timeMake sure Anki is running with AnkiConnect enabled before using the MCP server
For Docker option, the
--network=hostflag allows the container to access AnkiConnect on the host machine
Usage Examples
Once configured with an MCP client like Claude Desktop, you can interact with your Anki collection naturally:
"Create a flashcard about the capital of France"
"Show me all my deck names"
"Find all cards tagged with 'vocabulary'"
"Suspend all cards in the 'Difficult Words' deck"
"Open the deck browser in Anki"
Troubleshooting
Common Issues
Connection refused: Make sure Anki is running and AnkiConnect is installed
Port conflicts: Check if port 8765 is available or configure AnkiConnect to use a different port
Permission errors: Ensure the MCP server has proper file system permissions
Tool not found: Verify the MCP client configuration and restart the client
Contributing
Contributions are welcome! Please feel free to submit issues, feature requests, or pull requests.
License
ISC License
References
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
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/spacholski1225/anki-connect-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server