Anki Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Anki Mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
A Model Context Protocol (MCP) server that integrates with Anki flashcard application, allowing LLM applications like Claude to interact with your Anki decks and cards.
2055492159 git clone <repository-url>
cd anki-mcp npm install npm run buildStart the MCP server:
npm startFor development with auto-reload:
npm run devAdd the server to your Claude Desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"anki": {
"command": "node",
"args": ["/path/to/anki-mcp/dist/index.js"],
"env": {
"ANKI_HOST": "localhost",
"ANKI_PORT": "8765"
}
}
}
}Once configured, you can use natural language commands in Claude:
ANKI_HOST: AnkiConnect host (default: localhost)ANKI_PORT: AnkiConnect port (default: 8765)npm run build: Build TypeScript to JavaScriptnpm run dev: Run in development mode with auto-reloadnpm run watch: Watch mode for developmentnpm test: Run testsnpm run lint: Run ESLintsrc/
├── index.ts # Entry point
├── server.ts # Main MCP server implementation
├── anki-client.ts # AnkiConnect HTTP client
└── types/
└── anki.ts # TypeScript type definitionsThe server implements the Model Context Protocol specification and provides tools for Anki integration. Each tool includes detailed input schemas and error handling.
MIT License - see LICENSE file for details.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.