A

Anki

Create Anki cards and query decks.

·No reviews yet
Repo
Share:

About

Auto-generated

Anki is a Model Context Protocol server in the Productivity category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.

Example tools

Illustrative tool names — the actual tool set is defined by the server at runtime.

create_task
Create a new task
list_tasks
List tasks with filters
update_task
Update fields of an existing task

Screenshots

No screenshots yet.

Frequently Asked Questions

Common questions about Anki.

What is the Anki MCP server?
The Anki MCP server allows you to create Anki flashcards and query existing decks programmatically. It integrates Anki functionalities into clients that support the Model Context Protocol, enhancing productivity workflows.
How can I install the Anki MCP server?
Installation involves cloning the server's GitHub repository and running it locally. Integration with a specific MCP client like Claude Desktop, Cursor, or Cline depends on the client's documentation for adding local MCP servers.
Does the Anki MCP server require authentication or API keys?
No, the Anki MCP server uses 'none' as its authentication type. It does not require API keys, OAuth, or other credentials to operate. It is designed for straightforward local use.
What are the primary capabilities of the Anki MCP server?
The server's main capabilities include creating new Anki cards and querying information from existing Anki decks. This allows for automated flashcard generation and information retrieval for study purposes.
What is the licensing model for the Anki MCP server?
As an open-source project available on GitHub, the Anki MCP server is community-provided. Its usage is typically governed by the open-source license under which it is distributed, often implying no direct cost for use.
Is there a specific prerequisite for using the Anki MCP server?
A key prerequisite for using the Anki MCP server is having Anki itself installed and operational on your system, as the server interfaces directly with Anki's functionalities. Without an Anki installation, the server cannot perform its intended operations.

Install Anki

Claude Desktop

Add this to claude_desktop_config.json.

{
  "mcpServers": {
    "anki": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-anki"
      ]
    }
  }
}

Cursor

Add this to ~/.cursor/mcp.json.

{
  "mcpServers": {
    "anki": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-anki"
      ]
    }
  }
}

VS Code

Add this to your workspace settings.json.

{
  "mcp.servers": {
    "anki": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-anki"
      ]
    }
  }
}

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.