interactive-edtech-mcp
MCP server suite that lets coding agents generate deep instructional content from external sources and operate classroom-interactive EdTech platforms including Padlet, Google Classroom, Kahoot!, Wayground, Wordwall, and Nearpod.
README
edu-agent-kit
An agent-powered knowledge base & content toolkit for educators. Build a local LLM-wiki for your teaching materials, generate deep instructional content from your own sources, and export/distribute it to Kahoot, Padlet, Nearpod, Wordwall, Wayground, Google Workspace, Google Classroom, and Firebase โ from any MCP-capable agent.
๐น๐ผ ็น้ซไธญๆ่ชชๆ๏ผREADME.zh-TW.md ๏ฝ ่ฉณ็ดฐๅฎ่ฃ๏ผdocs/INSTALL.md ๏ฝ API ็ณ่ซ๏ผdocs/API-SETUP.md
Works with Claude Code, Cursor, Codex, OpenCode, Antigravity, and any MCP client.
What it does
Native AI features in classroom tools produce shallow content, don't connect to agent workflows, and can't ingest your own materials. edu-agent-kit solves this end to end:
- Local LLM-wiki โ scaffold a knowledge base for your teaching materials (templated folders, agent memory/
CLAUDE.md, dispatch commands), so an agent can orchestrate "material โ knowledge base โ generation โ output." - Deep content generation โ ingest files/URLs/web research, align to Taiwan's 108่ชฒ็ถฑ, and generate quizzes/lessons/boards that are validated and Bloom-depth-scored.
- High-fidelity delivery โ each platform gets its best supported path (official API where one exists, official import/export file otherwise) plus full Google Workspace + Classroom + Firebase output.
Four surfaces (cross-agent)
| Surface | What | For |
|---|---|---|
| MCP server | 44 tools | the universal layer โ every agent |
CLI (edu-agent-kit) |
scaffold wiki, Google auth, exports, doctor | any terminal/agent |
| Skills | 5 educator workflows (็นไธญ) | Claude & skill-capable agents |
| Claude Code Plugin | one-click bundle (MCP + skills) | the Claude ecosystem |
Platform support
| Platform | Create | Read |
|---|---|---|
| Padlet | โ official API (board + posts) | โ |
| Google Classroom | โ official API (assignments, materials, roster, grading) | โ |
| Google Docs / Slides / Forms / Sheets | โ official API | โ |
| Google Drive | โ folders, upload, sharing | โ |
| Firebase Hosting | โ publish material as a web page | โ |
| Kahoot! | โฌ๏ธ official .xlsx import |
โ Reports API |
| Wayground (Quizizz) | โฌ๏ธ official spreadsheet import | โ |
| Wordwall | โฌ๏ธ template content file | โ oEmbed |
| Nearpod | โฌ๏ธ Google Slides .pptx |
โ |
โฌ๏ธ = produces a file you upload in one step (no brittle browser automation; ToS-safe).
Quick start
# 1. Get the code & build
git clone https://github.com/FW1201/edu-agent-kit.git
cd edu-agent-kit
corepack enable pnpm
pnpm install && pnpm build
# 2. Scaffold your teaching knowledge base
node apps/cli/dist/index.js init --dir ~/my-teaching-wiki --template workflow \
--name "ๆจ็็จฑๅผ" --grades "ๅไธญ" --subjects "ๆธๅญธ" --agents claude --google docs,classroom
# 3. (optional) Authorize Google
node apps/cli/dist/index.js auth google --services docs,slides,forms,sheets,drive,classroom
# 4. Check setup
node apps/cli/dist/index.js doctor
Then connect your agent (below) and say things like "ingest raw/้่ชฒ.pdf, generate a deep 8-question quiz for ๅไธญ, and build a Kahoot import file."
Tool catalog (44 tools)
- Content (6):
content_ingest_source,content_web_research,content_align_curriculum,content_generate_quiz/_lesson/_board - Knowledge base (3):
wiki_list_templates,wiki_scaffold,wiki_status - Padlet (5) ยท Google Classroom (13) ยท Google Workspace (8):
google_docs_create/_from_lesson,google_slides_create_from_lesson,google_forms_create_from_quiz,google_sheets_create,drive_create_folder/drive_upload_file/drive_set_sharing - Firebase (1):
firebase_deploy_hosting - Kahoot (3) ยท Wayground (1) ยท Wordwall (2) ยท Nearpod (1)
- Workflow (1):
workflow_generate_and_distribute(generate โ deliver โ distribute)
Connect your agent
See docs/INSTALL.md for full per-agent steps. Replace /ABS/PATH with your clone path.
Claude Code (plugin โ recommended):
/plugin marketplace add FW1201/edu-agent-kit
/plugin install edu-agent-kit@edu-agent-kit
Or as a plain MCP server: claude mcp add edu-agent-kit -- node /ABS/PATH/edu-agent-kit/apps/server/dist/index.js
Cursor / Codex / OpenCode / Antigravity: add the MCP server (node /ABS/PATH/edu-agent-kit/apps/server/dist/index.js) to the agent's MCP config โ exact JSON/TOML for each in docs/INSTALL.md.
Remote/HTTP: TRANSPORT=http PORT=3000 node apps/server/dist/index.js โ http://127.0.0.1:3000/mcp.
Credentials
All optional โ missing keys only disable their own tools. Where to get each: docs/API-SETUP.md.
| Variable | For |
|---|---|
GOOGLE_CLIENT_ID / GOOGLE_CLIENT_SECRET |
Google Docs/Slides/Forms/Sheets/Drive/Classroom |
PADLET_API_KEY |
Padlet |
KAHOOT_API_KEY |
Kahoot Reports API |
TAVILY_API_KEY |
web research |
FIREBASE_TOKEN / FIREBASE_PROJECT |
Firebase Hosting |
Google authorization is one-time: edu-agent-kit auth google (or node packages/adapters/google-classroom/dist/auth-cli.js).
Limitations & ToS
- No browser automation. Kahoot/Wayground/Wordwall/Nearpod "create" produces an official import/export file you upload in one step โ a deliberate, ToS-safe choice.
- The MCP server has no LLM of its own:
content_generate_*returns a brief for your agent to author from, then validates + depth-scores the draft. - Google/Kahoot/Padlet/Firebase live features need their respective (sometimes paid) accounts.
- The 108่ชฒ็ถฑ alignment dataset is an extensible seed.
Architecture
edu-agent-kit/ pnpm monorepo
โโโ .claude-plugin/ plugin.json + marketplace.json
โโโ .mcp.json plugin MCP config
โโโ skills/ 5 educator skills (็นไธญ)
โโโ packages/
โ โโโ core/ sources/ mcp-shared/ models, ingestion, MCP utils
โ โโโ wiki-kit/ LLM-wiki scaffolder
โ โโโ adapters/
โ โโโ google-shared/ google-classroom/ google-workspace/ firebase/
โ โโโ padlet/ kahoot/ wayground/ wordwall/ nearpod/
โโโ apps/
โโโ server/ single MCP server (44 tools)
โโโ cli/ edu-agent-kit CLI
Development
pnpm build # build all packages
pnpm test # unit tests
pnpm typecheck # type-check
License
MIT ยฉ Kevin Wu (FW1201)
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.