bunpro-mcp
Manage a Japanese learning review queue backed by an Obsidian vault; allows reviewing due items, quizzing on mastered words, adding new grammar/vocab, and importing from Bunpro CSV.
README
bunpro-mcp
A local MCP server that manages a Japanese-learning review queue backed by an Obsidian vault. It runs as a child process of Claude Desktop, speaking MCP over stdio — no database, no network service, no port.
For contributors: see .agent/ARCHITECTURE.md for the build rationale and .agent/CONTRACT.md for the data shapes and tool behaviour.
What you can do with it
Once wired into Claude Desktop, ask Claude in plain language — it picks the right tool:
- Review what you're forgetting — "quiz me on what's due" pulls the items most in need of review and updates your schedule based on how you do.
- Practice words you've already mastered — "test me on food words I already know" gathers solid items around a theme, proposes a short practice conversation, runs it, then records how it went.
- Add something new — "I just learned 〜てしまう" files it, filling in the reading, meaning, and JLPT level for you.
- Import your Bunpro export — hand Claude a CSV export and it bulk-loads it into the vault.
Setup
1. Install uv
curl -LsSf https://astral.sh/uv/install.sh | sh
This installs to ~/.local/bin/uv. Confirm ~/.local/bin is on your PATH for interactive use — but note the Claude Desktop config below uses the absolute path instead, since Claude Desktop launches the server without your shell's PATH.
2. Install dependencies
cd bunpro-mcp
uv sync
3. Point it at a vault folder
The server needs a folder to store notes in — an existing Obsidian vault subfolder, or any empty directory to start fresh:
mkdir -p ~/Obsidian/Japanese
Suggested layout inside it (created automatically on first write):
Japanese/
├── Grammar/
└── Vocab/
Running the tests
uv run pytest
Manual verification (before wiring into Claude Desktop)
Start the server under the MCP Inspector — a local UI for calling tools by hand with no model involved:
mkdir -p /tmp/test-vault
VAULT_PATH=/tmp/test-vault uv run mcp dev src/bunpro_mcp/server.py
In the Inspector: call import_export with csv_path pointing at fixtures/sample_bunpro.csv (dry run first, then for real), then get_review_queue, get_item, and submit_grades, and confirm the queue ordering changes after grading.
To try get_practice_pool (the mastered-words practice mode), first give it some well-known items — import the sample telling it you already know those words well, or grade a few items 4 a couple of times. Then call get_practice_pool and confirm it returns those mastered items, strongest-first, with the weaker ones absent.
Wiring into Claude Desktop
Local MCP servers are configured via claude_desktop_config.json. On Linux:
~/.config/Claude/claude_desktop_config.json
Create it if it doesn't exist, and add (replacing <user> and the paths with your own):
{
"mcpServers": {
"bunpro": {
"command": "/home/<user>/.local/bin/uv",
"args": ["--directory", "/home/<user>/code/bunpro-mcp", "run", "src/bunpro_mcp/server.py"],
"env": { "VAULT_PATH": "/home/<user>/Obsidian/Japanese" }
}
}
}
Use absolute paths throughout — the server is launched from an unknown working directory, so nothing relative is safe.
After editing the config, fully quit and relaunch Claude Desktop (closing the window is not enough). The six tools — get_review_queue, get_practice_pool, get_item, submit_grades, add_item, import_export — then appear under the connectors/tools menu.
If the server doesn't show up, check Claude Desktop's MCP logs at ~/.config/Claude/logs/. Usual culprits: a wrong absolute path, VAULT_PATH pointing nowhere, or a startup exception.
Notes
- Nothing is ever deleted. Items you're done with are suspended, never removed from the vault.
- Remote access (web/mobile) is deliberately out of scope for this pass — see Appendix A of .agent/ARCHITECTURE.md if that's ever needed.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.