Kadmia MCP Server
Integrates Kadmia's JavaScript learning platform with AI assistants to provide personalized explanations and track learning progress.
README
Kadmia MCP Server
A Model Context Protocol (MCP) server for integrating the Kadmia JavaScript learning platform with AI assistants like Claude Code, Cursor, and others.
Prerequisites
- Node.js 18+ - Download here
- Kadmia account - Sign up free
Quick Start
1. Get your Kadmia credentials
Log into Kadmia to get your Firebase UID and API Key.
2. Configure Claude Code
Open your terminal and edit the Claude config file:
# macOS/Linux
nano ~/.claude.json
# Windows
notepad %USERPROFILE%\.claude.json
Add the following (replace the placeholder values with your credentials from Kadmia):
{
"mcpServers": {
"kadmia": {
"command": "npx",
"args": ["-y", "kadmia-mcp"],
"env": {
"KADMIA_LEARNER_ID": "your-firebase-uid-here",
"KADMIA_API_KEY": "your-api-key-here"
}
}
}
}
Alternative: Use the /mcp command inside Claude Code to add the server interactively.
3. Configure Cursor (Alternative)
- Open Cursor and go to Settings (gear icon) → MCP
- Click Add Server and enter:
- Command:
npx -y kadmia-mcp - Environment variables:
KADMIA_LEARNER_ID=your-firebase-uid-hereKADMIA_API_KEY=your-api-key-here
- Command:
4. Verify It Works
Restart Claude Code or Cursor, then ask:
"Use the Kadmia explain_concept tool to explain closures"
If configured correctly, you'll get a personalized explanation based on your Kadmia skill level.
Environment Variables
| Variable | Required | Description |
|---|---|---|
KADMIA_LEARNER_ID |
Yes | Your Firebase UID from thekadmia.com/kadmia-mcp |
KADMIA_API_KEY |
Yes | Your API key from thekadmia.com/kadmia-mcp |
KADMIA_API_BASE |
No | API base URL (default: Kadmia staging API) |
Available Tools
get_learner_progress
Get your learning progress from Kadmia (requires authentication).
| Parameter | Type | Required | Description |
|---|---|---|---|
| — | — | — | No input required |
Output: Progress data including subjects, recent activity, and learning insights.
explain_concept
Explain a JavaScript concept at your skill level. Returns an explanation tailored to your Kadmia progress with examples, common mistakes, and links to relevant lessons.
| Parameter | Type | Required | Description |
|---|---|---|---|
concept |
string | Yes | The JavaScript concept to explain (e.g., "closures", "event loop", "prototype chain") |
code_context |
string | No | Code snippet to make the explanation more relevant |
depth |
"brief" | "standard" | "deep" |
No | How detailed the explanation should be (default: "standard") |
How It Works
The Kadmia MCP server creates a bridge between your coding environment and the Kadmia learning app:
┌─────────────────┐ ┌─────────────────┐
│ IDE/Coding │ │ Kadmia App │
│ │ ──── MCP ────► │ │
│ • Explanations │ │ • Skill levels │
│ • Progress │ ◄──── MCP ──── │ • Mastery data │
└─────────────────┘ └─────────────────┘
- Explanations are tailored to your skill level from Kadmia
- Progress data personalizes your learning experience
Future Tools
bookmark_concept— Save concepts to study later in the Kadmia appgenerate_challenge— Get coding challenges calibrated to your skill leveljs_comedy_hour— Hear the JS joke of the day
Development
# Run with auto-reload
npm run dev
# Build TypeScript
npm run build
# Run the server
npm start
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
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.
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.