miyagi
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., "@miyagiSet my level to Junior and teach megit rebasewith a quiz."
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.
🥋 miyagi
A patient, gamified, voice-enabled MCP coding tutor. You run the commands. It drills, corrects, catches the falls, and keeps score.
Wax on, wax off. miyagi never does the work for you. It hands you the next command,
explains it at your level, and turns every result into a lesson. Each run comes back as a
teaching card: where you are on the roadmap, a What/How/Trade-offs breakdown pitched at
your experience, a Mermaid mental model, the pitfalls that bite people, curated docs, and
an active-recall quiz. All of it narrated through your OS's own speech engine.
Why it's safe to install
It runs shell commands on your machine, so it's built to be read before it's trusted.
Nothing catastrophic executes.
rm -rf,dd of=/dev/*, fork bombs,curl | sh, force pushes andchmod -R 777are pattern-matched and forced into dry-run regardless of what the calling model claims. The screen defends against a confused AI, not just a careless user, which is why it re-derives the verdict instead of trusting theis_dangerousflag it was handed.A denylist is a backstop, not a sandbox. The real boundary is your MCP client's own approval prompt, with you reading the command before it runs. The screen exists for the narrower case that prompt handles badly: something obviously destructive proposed to someone who is clicking through.
Failures teach instead of crashing. A non-zero exit returns a Hotfix Diagnostic with a troubleshooting ladder. The server never throws.
Bounded. 60-second timeout, 4 MB output cap, no network calls, no telemetry, no API keys, no accounts.
Small enough to audit. Two runtime dependencies, the MCP SDK and zod, in one source file you can read in a sitting.
Related MCP server: EduChain MCP Server
Install
Point your MCP client at npx and it fetches on first run:
npx -y miyagi-mcpOr install it globally, which gives you a miyagi command:
npm install -g miyagi-mcpgit clone https://github.com/c00p75/miyagi.git
cd miyagi
npm install
npm run build # emits dist/miyagi.js
npm testThen use "command": "node", "args": ["<ABS_PATH>/dist/miyagi.js"] in the config below.
Configure your MCP client
Three lines, the same everywhere. No keys, no accounts, and it all runs locally.
{
"mcpServers": {
"miyagi": {
"command": "npx",
"args": ["-y", "miyagi-mcp"]
}
}
}Where that goes:
Client | File |
Claude Desktop (macOS) |
|
Claude Desktop (Windows) |
|
Cursor |
|
AntiGravity / Windsurf |
|
For Claude Code, one command does it:
claude mcp add miyagi -- npx -y miyagi-mcpRestart the client, then try: "Set my roadmap to Backend Developer and teach me
docker compose config."
What's in it
Engine | What it does |
Audio | A non-blocking FIFO queue, so lines never talk over each other. Markdown, URLs and emoji are stripped before anything is spoken, and the OS engine is probed before it's called, so a missing binary goes quiet instead of taking the server down. |
Roadmap | Track state as category, roadmap, topic, step N of M, with the next command suggested for wherever you are. |
Gamification | 15 XP per command, 25 per correct quiz with streak multipliers, |
Progress | Saved to |
Safety | Nine catastrophe classes screened independently of the caller, all forced into dry-run. |
Notes |
|
Speech engines
Platform | Engine |
macOS |
|
Windows | PowerShell |
Linux |
|
Linux users who want audio: sudo apt install speech-dispatcher.
Tools
quick_config: switch skill level (Junior/Mid/Senior), category, track, topic or voice in one call. Passreset_progress: trueto wipe saved XP back to first-run state.set_active_roadmap: set category, roadmap, topic and step countersget_next_roadmap_command: the next copy-pasteable command, withadvance: trueto step forwardconfigure_voice: toggle audio, set words per minute, speak a test phraseget_user_stats: XP, level, title, streaks, badges, title ladderrun_teaching_command: execute or dry-run a command and return the teaching cardverify_quiz_answer: grade the quiz, update streak and XP, speak the feedbackexport_roadmap_notes: writeROADMAP_PROGRESS.md
Where progress lives
~/.miyagi/profile.json, holding XP, level, streaks, badges, your skill level, voice
settings and roadmap position. Override the directory with MIYAGI_HOME, which is also
how the tests keep away from a real profile.
The file is treated as untrusted on the way back in, because it's hand-editable and a crash can truncate it. Anything that fails to parse is discarded in favour of a fresh profile rather than raised as an error, values out of range are clamped instead of rejected, and level is recomputed from XP rather than read, so a file claiming level 99 at 40 XP gets corrected. Writes go to a temp file and are renamed, so an interrupted write leaves the previous profile intact.
Development
npm install
npm run typecheck
npm test # node:test, no test framework to install
npm run buildCI runs typecheck, tests and a real stdio handshake against Node 18, 20 and 22.
Limits worth knowing
Commands run with your own privileges in your own directory. No container, no restricted user, no syscall filter. That's right for a local teaching tool driven by its owner, and it's the first thing to change if it ever accepts untrusted input.
Long-running or interactive commands belong in your own terminal. The 60-second cap will cut them off.
Whether XP and streaks actually keep someone on a roadmap is an open question. The progress file is what makes it answerable.
License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityAmaintenanceEnables interactive LeetCode practice with AI-guided authentication, problem solving, solution submission, and learning mode.2417311MIT
- FlicenseNot gradedqualityDmaintenanceEnables AI-powered educational content generation, including multiple-choice questions and lesson plans, through a modular command platform.9
- AlicenseNot gradedqualityDmaintenanceEnables AI agents to present interactive code walkthroughs with voice narration, opening files, highlighting code, and showing inline explanations with synchronized text-to-speech.57MIT
- AlicenseAqualityDmaintenanceProvides educational tools for developers to learn programming concepts, review code, get best practices, compare approaches, generate learning paths, debug, explain code, and quiz themselves.8MIT
Related MCP Connectors
Build, version, review, and export websites, web apps, and games from a conversation.
Adaptive plan/build/review cycles for AI coding assistants, persisted across sessions.
Persistent memory and cross-session learning for AI coding assistants (hosted remote MCP).
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/c00p75/miyagi'
If you have feedback or need assistance with the MCP directory API, please join our Discord server