Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Enables LLMs to interact with Anki flashcard collections, including deck management, note search, viewing contents, and editing fields.

README.md

anki-mcp

A Model Context Protocol (MCP) server that enables LLMs to interact with your Anki flashcard collection. Read decks, search notes, view card contents, and update fields directly from your LLM tool of choice.

Features

  • Deck Management: List all available Anki decks
  • Note Search: Search notes using Anki's powerful search syntax
  • Note Viewing: View note contents and field values
  • Note Editing: Update note fields programmatically

Setup

Prerequisites

  1. Anki - Desktop application must be installed and running
  2. AnkiConnect - Add-on for API access (code: 2055492159)
  3. Bun 1.2.16 or later

Installation

# Install AnkiConnect in Anki
# Go to Tools → Add-ons → Get Add-ons... → Enter: 2055492159

# Clone and setup this project
git clone git@github.com:mybuddymichael/anki-mcp.git
cd anki-mcp
bun install

Usage

With Claude Desktop

Add to your Claude Desktop configuration file:

{
  "mcpServers": {
    "anki": {
      "command": "bun",
      "args": ["run", "/path/to/anki-mcp/index.ts"]
    }
  }
}

With Other MCP Clients

This server works with any MCP-compatible client. Look up the respective documentation for how to configure it.

Available tools

| Tool | Description | Parameters | |------|-------------|------------| | get-decks | Lists all available Anki decks | None | | search-notes | Search notes using Anki syntax | query (string) | | get-note-fields | Get note field contents | noteIds (number[]) | | get-model-names | List note types/models | None | | get-model-field-names | Get field names for a model | modelName (string) | | update-note-fields | Update note field contents | noteId (number), fields (object) | | add-notes | Add new notes to decks | notes (array) | | list-media-files | List all media files | None | | check-media-exists | Check if media file exists | filename (string) | | store-media | Store media file to Anki media collection | filePath (string) |

Usage examples

Adding new cards

"Add a card with 'bonjour' on the front and 'hello' on the back to my French deck"

"Create a flashcard for the Spanish word 'biblioteca' meaning 'library' with the tag 'places'"

"Add these vocabulary words to my German deck: Haus (house), Auto (car), Buch (book)"

Finding cards

"Search for all cards in my Biology deck, then show me their contents" First: Search returns note IDs → Second: Get field contents for those IDs

"Find my Spanish vocabulary cards tagged with 'food', then show me what they contain"

Updating cards

"Update the back of card #1234567890 to include pronunciation: 'biblioteca [bee-blee-oh-TEH-kah]'"

"Fix the typo on the front of that card - change 'recieve' to 'receive'"

Deck info

"What decks do I have available?"

"What note types exist in my Anki collection?"

"Show me the field names for my Cloze note type"

Related Links

License

MIT

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Search servers.