bunpro-mcp
This server acts as an MCP interface to Bunpro, a Japanese grammar/vocabulary SRS platform, letting an LLM agent read study data and manage SRS reviews. It also supports token refresh without restarting the MCP client.
User & Profile
get_user— Retrieve your Bunpro user profile (level, title, settings)
Review Queue & History
get_due_count— Check how many reviews are currently dueget_queue— Fetch the full current review queueget_reviews— List reviews with paginationget_last_session— Stats from your most recent review sessionget_last_24_hours— Review history for the last 24 hours
Statistics
get_base_stats— Overall study statistics (totals, streaks, etc.)get_jlpt_progress— Grammar/vocab progress by JLPT level (N1–N5)get_srs_overview— SRS level distribution across all itemsget_srs_level_details— Items at a specific SRS level (1–10) with paginationget_ghost_details— Ghost review items that reappear after being burned
Forecasts & Activity
get_forecast_daily/get_forecast_hourly— Upcoming daily/hourly review forecastsget_review_activity— Review activity history (for streak/activity graphs)
Item Details & Search
get_item— Full details for a grammar point or vocabulary item by slug or ID (meaning, structure, examples, SRS status)get_item_notes— Your personal study notes for a grammar or vocab itemsearch— Search grammar points and vocabulary by query, with filters for type (grammar/vocab) and result limit
SRS Management
add_to_reviews— Add grammar points or vocab items to your SRS reviews (optionally specifying a deck)remove_from_reviews— Remove items from your SRS reviews
Bookmarks
add_bookmark/remove_bookmark— Add or remove bookmarks for items
Legacy API (requires BUNPRO_API_KEY)
get_study_queue_legacy— Review queue counts via the legacy APIget_recent_items_legacy— Recently added grammar points via the legacy API
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@bunpro-mcpwhat's my due count for today?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
bunpro-mcp
An unofficial Model Context Protocol server for Bunpro, the Japanese grammar/vocabulary SRS. It exposes Bunpro's review queue, search, statistics, and SRS management as MCP tools, so an LLM agent can read your study data and add grammar points / vocabulary to your reviews.
Disclaimer — please read
This is an independent, unofficial project, not affiliated with, endorsed by, or supported by Bunpro. It wraps Bunpro's private, undocumented frontend API, which can change or break at any time. Built for personal, educational use.
This tool only works because it relies on Bunpro's servers, content, and services. Your use of it — and especially any commercial use — is subject to Bunpro's Terms of Service independently of this project's license. No Bunpro content (grammar explanations, example sentences, vocabulary data, audio) is included in this repository. Use at your own risk. If you build something commercial on top of Bunpro, support Bunpro directly.
Features
Read your review queue, due counts, SRS overview, JLPT progress, forecasts, and session history.
Search grammar points and vocabulary — compact results, filterable by type, size-capped.
Add / remove grammar points and vocabulary to / from your SRS reviews.
Manage bookmarks.
Per-call token resolution: refresh an expired token without restarting your MCP client (see below).
Related MCP server: TalkToAnki
Requirements
Node.js 18+ (uses the built-in
fetch).A Bunpro account and its
frontend_api_token.
Getting your token
The frontend API uses the frontend_api_token cookie as a bearer token:
Log in to bunpro.jp.
DevTools → Application → Cookies →
https://bunpro.jp→ copy the value offrontend_api_token.
The token expires roughly monthly; refresh it the same way when calls start returning
401 AUTH_USER_DENIED.
Install & build
npm install
npm run buildConfigure your MCP client
Add the server to your MCP client config (stdio transport). Build it locally first
(npm install builds via the prepare script), then point at dist/index.js — see
claude_desktop_config.example.json:
{
"mcpServers": {
"bunpro": {
"command": "node",
"args": ["/absolute/path/to/bunpro-mcp/dist/index.js"],
"env": { "BUNPRO_API_TOKEN": "your_frontend_api_token_here" }
}
}
}Not yet published to npm. Once it is, you'll also be able to run it with no local clone via
"command": "npx", "args": ["-y", "@patvandyke/bunpro-mcp"].
BUNPRO_API_KEY (legacy) is optional and only enables the two *_legacy tools.
Token refresh without restarting
The token is resolved per request, not just at startup, so a refreshed token is picked up without restarting the server:
BUNPRO_TOKEN_FILE— if set (or, by default,~/.claude-work/.claude.jsonwhen present), the liveBUNPRO_API_TOKENvalue is read from that JSON file on each call (30 s cache) and re-read on a401. Refresh the token in the file and the next call picks it up — no restart. This is handy under Claude Code, whose config already holds the token.Otherwise it falls back to the
BUNPRO_API_TOKENenv var supplied at spawn.
A 401 returns a clear "token expired" message instead of dropping the connection.
Tools
Tool | Description |
| User profile |
| Number of reviews due |
| Full review queue |
| Paginated reviews |
| Statistics |
| Forecasts & activity |
| History |
| Full detail / notes for one item |
| Search grammar + vocab ( |
| SRS management ( |
| Bookmarks |
| Legacy API-key endpoints |
API notes
Frontend API base:
https://api.bunpro.jp/api/frontend. Auth:Authorization: Bearer <frontend_api_token>.The reviews endpoint uses the type names
Vocab/GrammarPoint(bookmarks useVocabulary/GrammarPoint).Raw search responses can be very large; this server returns a compact projection and reports truncation.
Related projects
brimalval/bunpro-mcp — an independent Python / FastAPI implementation.
License
MIT © Patrik Kollár. Keep the copyright / credit notice in copies. This license covers this client code only — it grants no rights to Bunpro's services or content, which remain governed by Bunpro's Terms of Service.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/PatVandyke/bunpro-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server