camdenclark_anki_mcp_server

camdenclark_anki_mcp_server

by CamdenClark
A TypeScript-based MCP server that integrates with Anki via the AnkiConnect plugin for managing decks and notes.

Anki Integration MCP Server

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.

Features

Resources

  • List and access Anki decks via anki://decks/{id} URIs.
  • List and access note models via anki://models/{id} URIs.
  • JSON representation of Anki objects.

Tools

  • 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.

Development

Installation

To install dependencies, run:

npm install

Building the Server

To build the server, run:

npm run build

For development with auto-rebuild, use:

npm run watch

Usage

Integration with Claude Desktop

To use the server with Claude Desktop, add the following configuration:

  • MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "anki-mcp": {
      "command": "node",
      "args": ["d:\\anki-mcp-server\\build\\index.js"]
    }
  }
}

Debugging

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.

About

This project is a model context protocol server that connects to Anki through AnkiConnect. It is licensed under the MIT license.

Resources

Activity

  • Stars: 22
  • Watchers: 2
  • Forks: 3

Report repository

Languages

  • JavaScript: 100.0%

Features & Capabilities

Categories
mcp_server model_context_protocol typescript anki anki_connect api_integration

Implementation Details

Stats

0 Views
22 GitHub Stars

Repository Info

CamdenClark Organization

Similar MCP Servers

continuedev_continue by continuedev
25049
21423
9300