claude_code_mastery
Monitors GitHub Releases for Claude Code CLI releases to track version changes and auto-update the curriculum.
Monitors Reddit community r/ClaudeAI for community discussions and tips to identify curriculum gaps and updates.
Monitors Anthropic YouTube channel for video content related to Claude Code to incorporate into the curriculum.
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., "@claude_code_masteryCheck for new Claude Code updates from the last 2 weeks"
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.
Agent Code Academy
A free 12-week course for mastering AI-assisted coding with Claude Code — from zero to expert. Includes a full curriculum, an auto-updating MCP server, a live course website, and an automated QA pipeline.
🌐 Live site: agentcodeacademy.com
What's Inside
Component | Description |
| 12-week course with lessons, exercises, quizzes, and auto-generated updates |
| Next.js 16 static site deployed on Vercel with SEO, email capture, and dark mode |
| Playwright E2E test suite (79 tests across 6 files) |
| GitHub Actions CI/CD — PR checks + nightly production tests |
| MCP server that monitors 7+ sources and auto-updates the curriculum |
Related MCP server: Skill Seekers
Site Features
SEO — Sitemap, robots.txt, JSON-LD Course schema, Open Graph & Twitter meta tags, canonical URLs
Email capture — Formspree-powered signup forms (homepage + inline CTAs + week page banners)
Dark mode — System preference detection + manual toggle (Tailwind CSS 4 + next-themes)
Mobile responsive — Hamburger nav, stacked layouts, touch-friendly at all viewports
Monetization — Buy Me a Coffee, affiliate tool links, Vercel Analytics
QA Pipeline
79 Playwright tests run automatically on every PR and nightly against production.
Suite | Tests | What it covers |
| 27 | All 25 routes return 200, 404 page, no console errors |
| 17 | Meta tags, JSON-LD, OG tags, canonical URLs, sitemap, robots.txt |
| 5 | Theme toggle, background color, system preference |
| 8 | Mobile nav, hamburger menu, layout, no overflow |
| 6 | Email signup, inline CTAs, mocked submission, banner dismiss |
| 11 | 7 external links (soft assertions) + 4 internal nav links |
How it works
PR opened → Vercel deploys preview → GitHub Actions runs 79 Playwright tests
→ Pass ✅ → PR comment with results → merge ready
→ Fail ❌ → PR comment + red check → merge blockedNightly: Runs daily at 6 AM UTC against agentcodeacademy.com via cron.
MCP Tools
Tool | Description |
| Pulls latest Claude Code updates from 7+ sources |
| Compares updates against the curriculum and finds gaps |
| Writes changes to the curriculum markdown file |
| Configures where the curriculum file lives |
| Shows progress and update history |
Data Sources
Boris Cherny's X (@anthropaboris) — Claude Code lead's updates and tips
Anthropic Blog — Official feature announcements
Anthropic Changelog — Technical release notes
Claude Code Docs — Documentation structure changes
GitHub Releases — Claude Code CLI releases
Anthropic YouTube — Video content
Reddit r/ClaudeAI — Community discussion
Installation
Prerequisites
Python 3.10+
Node.js 20+ (for the site)
Claude Code installed (
npm install -g @anthropic-ai/claude-code)
Setup
git clone https://github.com/mgalbakri/claude-code-mastery.git
cd claude-code-mastery
pip install -e .Configure Claude Code
Add to ~/.claude.json under mcpServers:
{
"claude_code_mastery": {
"type": "stdio",
"command": "python3",
"args": ["-m", "claude_code_mastery.server"],
"env": {
"PYTHONPATH": "/path/to/claude-code-mastery"
}
}
}Run the Site Locally
cd site
npm install
npm run devRun Tests
cd site
npm test # Run all 79 tests
npm run test:smoke # Smoke tests only
npm run test:seo # SEO tests onlyUsage
In Claude Code:
> Set my curriculum path to ~/projects/claude-code-mastery/curriculum.md
> Check for new Claude Code updates from the last 2 weeks
> Analyze my curriculum for gaps
> Apply any high-priority updatesAutomated Updates
A macOS launchd agent checks for updates every Monday at 9 AM:
Fetches updates from all sources
Analyzes gaps against the curriculum
Auto-applies high-priority changes (with backup)
Syncs to the site directory
Deploys to Vercel
Sends email + macOS notification
Install the scheduler:
python -m claude_code_mastery.scheduler --install-launchd --weeklyProject Structure
claude-code-mastery/
├── curriculum.md # 12-week course (source of truth)
├── pyproject.toml # Python package config
├── .github/workflows/ # CI/CD pipelines
│ ├── qa.yml # PR-triggered QA (79 Playwright tests)
│ └── nightly-qa.yml # Daily production smoke test
├── claude_code_mastery/ # MCP server
│ ├── server.py # Tool definitions
│ ├── sources.py # Data fetchers
│ ├── analyzer.py # Gap analysis
│ ├── cache.py # Local persistence
│ ├── semantic.py # TF-IDF matching
│ ├── scheduler.py # Scheduled checks & deploy
│ └── docs_differ.py # Docs diffing
├── site/ # Next.js course website
│ ├── app/ # App Router pages
│ │ ├── page.tsx # Homepage
│ │ ├── layout.tsx # Root layout with SEO meta
│ │ ├── not-found.tsx # Custom 404 page
│ │ ├── sitemap.ts # Dynamic sitemap
│ │ ├── robots.ts # Robots.txt
│ │ ├── week/[number]/page.tsx # Week pages
│ │ └── appendix/[letter]/page.tsx # Appendix pages
│ ├── components/ # React components
│ │ ├── sidebar.tsx # Desktop sidebar nav
│ │ ├── mobile-nav.tsx # Mobile hamburger nav
│ │ ├── theme-toggle.tsx # Dark/light mode toggle
│ │ ├── email-signup.tsx # Homepage email form
│ │ ├── email-banner.tsx # Week page email banner
│ │ ├── inline-email-cta.tsx # Between-phase CTA
│ │ ├── week-card.tsx # Week preview card
│ │ └── markdown-renderer.tsx # MDX content renderer
│ ├── e2e/ # Playwright E2E tests
│ │ ├── smoke.spec.ts # Route & error tests
│ │ ├── seo.spec.ts # SEO & meta tag tests
│ │ ├── dark-mode.spec.ts # Theme toggle tests
│ │ ├── responsive.spec.ts # Mobile viewport tests
│ │ ├── forms.spec.ts # Email form tests
│ │ └── links.spec.ts # Link validation tests
│ ├── lib/ # Parser & types
│ └── playwright.config.ts # Playwright configuration
└── tests/ # pytest suite (127 tests)License
MIT
This server cannot be installed
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/mgalbakri/claude-code-mastery'
If you have feedback or need assistance with the MCP directory API, please join our Discord server