bunpro-mcp
An unofficial MCP server for Bunpro that exposes its review queue, search, statistics, and SRS management as tools, enabling an LLM agent to read study data and add grammar points or vocabulary to reviews.
README
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).
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 build
Configure 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 |
|---|---|
get_user |
User profile |
get_due_count |
Number of reviews due |
get_queue |
Full review queue |
get_reviews |
Paginated reviews |
get_base_stats, get_jlpt_progress, get_srs_overview, get_srs_level_details, get_ghost_details |
Statistics |
get_forecast_daily, get_forecast_hourly, get_review_activity |
Forecasts & activity |
get_last_session, get_last_24_hours |
History |
get_item, get_item_notes |
Full detail / notes for one item |
search |
Search grammar + vocab (grammar, vocab, limit params; compact output) |
add_to_reviews, remove_from_reviews |
SRS management (Vocab / GrammarPoint) |
add_bookmark, remove_bookmark |
Bookmarks |
get_study_queue_legacy, get_recent_items_legacy |
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.
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.