A TypeScript-based MCP server designed to integrate with Anki through the AnkiConnect plugin. This server demonstrates core MCP concepts by providing resources and tools for managing Anki decks and notes.
anki://decks/{id}
URIs.anki://models/{id}
URIs.listDecks
: Get names of all decks.listModels
: Get names of all note models.getModel
: Get details of a specific note model.addNote
: Create a single note with specified deck name, model name, fields, and tags.addNotes
: Create multiple notes in bulk with specified parameters.To install dependencies, run:
npm install
To build the server, run:
npm run build
For development with auto-rebuild, use:
npm run watch
To use the server with Claude Desktop, add the following configuration:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%/Claude/claude_desktop_config.json
{
"mcpServers": {
"anki-mcp": {
"command": "node",
"args": ["d:\\anki-mcp-server\\build\\index.js"]
}
}
}
Since MCP servers communicate over stdio, debugging can be challenging. Use the MCP Inspector for debugging:
npm run inspector
The Inspector will provide a URL to access debugging tools in your browser.
This project is a model context protocol server that connects to Anki through AnkiConnect. It is licensed under the MIT license.