vionwinnie jap vocab anki mcp server
by vionwinnie
Japanese Vocab Anki MCP Server
What is vionwinnie jap vocab anki mcp server
Japanese Vocab Anki MCP Server
A Model Context Protocol server implementation for interacting with Anki decks programmatically. This server allows Language Models to interact with Anki through a standardized interface, with special support for Japanese language learning.
This is vibe-coded with Cursor with Claude 3.5 Sonnet.
Features
- List available decks
- View cards in decks
- Add new cards
- Review cards with spaced repetition
- Import Japanese vocabulary with readings and meanings
- Add sample sentences to Japanese vocabulary cards
- Track review history and learning progress
End-to-End Example: Japanese Vocabulary Study with Claude
Here's a complete workflow showing how to use Claude to enhance your Japanese vocabulary cards with sample sentences.
Step 1: Generate Fill-in-the-Blank Exercises
First, ask Claude to create practice exercises using the study_japanese_vocab_prompt
:
Claude will look through your recently reviewed vocabulary and create contextual sentences with blanks to test your understanding.
Step 2: Convert to Sample Sentences
Next, use the vocab_sentences_json_prompt
to convert these sentences into a structured format:
Claude will transform the sentences into a JSON dictionary mapping each vocabulary word to its sample sentences.
Step 3: Update Anki Cards
Finally, use the update_notes_with_sentences
tool to add these sentences to your Anki cards:
The sentences will be added to the reading field of each vocabulary card, providing more context for your studies.
Results in Anki
After the update, your cards will include the new sample sentences:
This workflow helps you:
- Practice vocabulary in context through fill-in-the-blank exercises
- Add natural example sentences to your cards
- Build a more comprehensive understanding of each word's usage
Installation
- Clone this repository:
git clone https://github.com/vionwinnie/jap-vocab-anki-mcp-server.git
cd jap-vocab-anki-mcp-server
Usage
-
Make sure Anki is not running (to avoid database locks)
-
Set the path to your Anki collection (optional):
export ANKI_COLLECTION_PATH="/path/to/your/collection.anki2"
- Run the server:
python -m anki_mcp.server
Available Resources
anki://decks
- List all available Anki decksanki://deck/{deck_name}/cards
- List all cards in a specific deckanki://recent/reviewed
- View cards reviewed in the last 24 hoursanki://recent/learned
- View cards learned (graduated from new) in the last 24 hours
Available Tools
Basic Card Management
add_card(deck_name: str, front: str, back: str)
- Add a new card to a deckreview_card(card_id: int, ease: int)
- Review a card with a specific ease (1-4)get_card_history(card_id: int)
- Get detailed review history for a specific card
Japanese Vocabulary Features
import_japanese_vocab(csv_path: str, deck_name: str, tags: str = None)
- Import Japanese vocabulary from CSVupdate_notes_with_sentences(vocab_sentences: Dict[str, List[str]], deck_name: str = "Try! N3 Vocab")
- Add sample sentences to vocabulary notes
Review History
get_deck_review_history(deck_name: str)
- Get review history for all cards in a deck within the past 24 hours
Available Prompts
create_deck_prompt(deck_name: str)
- Get help creating a new deckreview_history_prompt()
- Get help analyzing review historystudy_japanese_vocab_prompt()
- Get help with Japanese vocabulary studyvocab_sentences_json_prompt()
- Generate JSON dictionary mapping vocab to sample sentences
Japanese Note Type Requirements
The server expects a note type called "Japanese (recognition)" with the following fields:
- Expression (Japanese word)
- Meaning (English meaning)
- Reading (with furigana and sample sentences)
License
MIT License
Leave a Comment
Frequently Asked Questions
What is MCP?
MCP (Model Context Protocol) is an open protocol that standardizes how applications provide context to LLMs. Think of MCP like a USB-C port for AI applications, providing a standardized way to connect AI models to different data sources and tools.
What are MCP Servers?
MCP Servers are lightweight programs that expose specific capabilities through the standardized Model Context Protocol. They act as bridges between LLMs like Claude and various data sources or services, allowing secure access to files, databases, APIs, and other resources.
How do MCP Servers work?
MCP Servers follow a client-server architecture where a host application (like Claude Desktop) connects to multiple servers. Each server provides specific functionality through standardized endpoints and protocols, enabling Claude to access data and perform actions through the standardized protocol.
Are MCP Servers secure?
Yes, MCP Servers are designed with security in mind. They run locally with explicit configuration and permissions, require user approval for actions, and include built-in security features to prevent unauthorized access and ensure data privacy.
Related MCP Servers
chrisdoc hevy mcp
sylphlab pdf reader mcp
An MCP server built with Node.js/TypeScript that allows AI agents to securely read PDF files (local or URL) and extract text, metadata, or page counts. Uses pdf-parse.
aashari mcp server atlassian bitbucket
Node.js/TypeScript MCP server for Atlassian Bitbucket. Enables AI systems (LLMs) to interact with workspaces, repositories, and pull requests via tools (list, get, comment, search). Connects AI directly to version control workflows through the standard MCP interface.
aashari mcp server atlassian confluence
Node.js/TypeScript MCP server for Atlassian Confluence. Provides tools enabling AI systems (LLMs) to list/get spaces & pages (content formatted as Markdown) and search via CQL. Connects AI seamlessly to Confluence knowledge bases using the standard MCP interface.
prisma prisma
Next-generation ORM for Node.js & TypeScript | PostgreSQL, MySQL, MariaDB, SQL Server, SQLite, MongoDB and CockroachDB
Zzzccs123 mcp sentry
mcp sentry for typescript sdk
zhuzhoulin dify mcp server
zhongmingyuan mcp my mac
zhixiaoqiang desktop image manager mcp
MCP 服务器,用于管理桌面图片、查看详情、压缩、移动等(完全让Trae实现)
zhixiaoqiang antd components mcp
An MCP service for Ant Design components query | 一个减少 Ant Design 组件代码生成幻觉的 MCP 服务,包含系统提示词、组件文档、API 文档、代码示例和更新日志查询
Submit Your MCP Server
Share your MCP server with the community
Submit Now