courseforge-mcp
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., "@courseforge-mcpBuild a Canvas course from this syllabus for course ID 12345"
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.
CourseForge turns a syllabus into a real Canvas course. Hand your AI assistant a course outline and get back modules, pages, assignments, quizzes with questions, and discussions, imported straight into Canvas LMS or packaged as a standards-compliant .imscc file that any Canvas instance can import.
Why CourseForge?
Existing Canvas MCP servers read courses well, and some create individual pages or assignments. CourseForge builds the whole course: it generates a Canvas-flavored IMS Common Cartridge (the same format Canvas itself exports) and pushes it through Canvas's content-migrations API, so one import call creates every module, page, assignment, and quiz. The content arrives unpublished, and you review it in Canvas before students see anything.
Related MCP server: imscc-mcp
Quickstart
1 · MCP server: let your AI build courses in Canvas
npx -y courseforge-mcp init # interactive: writes config for Claude Code/Desktop/CursorThen ask your assistant: “Here's my syllabus. Build it into Canvas course 12345.”
claude mcp add courseforge \
-e CANVAS_BASE_URL=https://youruni.instructure.com \
-e CANVAS_API_TOKEN=your-token \
-- npx -y courseforge-mcpGet a token in Canvas: Account → Settings → + New access token.
2 · No API token? Build an importable file instead
npx -y @courseforge/imscc build examples/intro-to-chemistry.jsonUpload the resulting .imscc in Canvas under Settings → Import Course Content → Common Cartridge 1.x Package.
3 · Agent skills for Claude Code, Codex, Cursor & 40+ agents
npx skills add jasp-nerd/courseforge # canvas-course-builder, imscc-editor, canvas-course-qcWhat you get
🏗️ | One tool call: CourseSpec JSON → validated |
📦 | Build, parse, modify, and validate Canvas cartridges (the export → edit → re-import loop), with QTI 1.2 quiz generation for 8 question types |
🔌 | 20 tools: course/module/page/assignment/quiz/discussion creation, import/export, migration progress, and a pre-publish QC linter |
🧠 Agent skills | Interview the teacher, apply university branding, preview the build plan, create everything unpublished. Portable across the open Agent Skills standard |
🌐 | Standalone Canvas REST client: token or browser-cookie auth, Link-header pagination, 429 retry, the 3-step upload dance |
🛡️ Tested | 61 tests: golden-file manifests, round-trips on real Canvas exports, zip-slip/zip-bomb/XXE guards, MSW-mocked API, MCP protocol integration |
How it works
flowchart LR
A["📄 Syllabus / course idea"] --> B["🤖 AI agent<br/>+ canvas-course-builder skill"]
B --> C["CourseSpec JSON<br/>Zod-validated"]
C -->|"@courseforge/imscc"| D["📦 .imscc<br/>Canvas cartridge"]
D -->|"content_migrations API"| E["🎓 Canvas course<br/>unpublished, ready for review"]
D -->|"manual upload"| E
C -->|"mode: api"| E
E -->|"export"| DA plain JSON course description called the CourseSpec connects everything. Agents write it, the imscc package turns it into a cartridge with the same structure Canvas's own exports use (including the canvas_export.txt flag and cccv1p0 extension XMLs, which preserve module structure and assignment settings on import), and the MCP server pushes it through the same import pipeline as the Canvas UI.
Compared to existing Canvas MCP servers
CourseForge | vishalsachdev/canvas-mcp | bruchris/canvas-lms-mcp | |
Build a whole course in one call | ✅ | — | — |
Generate + import | ✅ | — | — |
Modify existing Canvas exports | ✅ | — | — |
Quiz generation incl. questions | ✅ QTI 1.2 | — | New Quizzes API |
Course/content creation tools | ✅ | partial | ✅ |
Grading / student-facing tools | — | ✅ | ✅ |
Language | TypeScript | Python | TypeScript |
vishalsachdev's and bruchris's servers cover course management (grading, feedback, student workflows) far more deeply than CourseForge does. CourseForge covers creation. They run side by side without conflict.
Repository layout
packages/shared CourseSpec Zod schemas (the shared course format)
packages/imscc .imscc build / parse / modify / validate + CLI
packages/canvas-client Canvas REST client (zero MCP dependencies)
packages/mcp The courseforge-mcp server
skills/ Agent Skills (open SKILL.md standard)
fixtures/ Real .imscc exports used in round-trip tests
docs/ IMSCC format ground truth, specs, launch playbookDocumentation
Roadmap
Chrome extension (build courses from inside the Canvas UI, no token needed)
Rubrics + outcomes in cartridges
New Quizzes (QTI 2.x) authoring
Course templates gallery
.mcpbone-click bundle on the MCP registries
License
Apache-2.0 © jasp-nerd. Not affiliated with Instructure. Canvas is a trademark of Instructure, Inc.
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.
Related MCP Servers
- AlicenseBqualityDmaintenanceEnables AI assistants like Claude to interact with Canvas LMS through the Canvas API, providing tools for managing courses, announcements, rubrics, assignments, and student data.10591MIT
- FlicenseAqualityDmaintenanceAn MCP server that enables the creation of Canvas Common Cartridge (.imscc) packages from structured course data using the canvas_cc Ruby gem. It allows users to programmatically build course content including modules, assignments, and rubrics for import into compatible Learning Management Systems.4
- AlicenseNot gradedqualityDmaintenanceConnects Claude to Canvas LMS accounts, enabling natural language queries about courses, assignments, grades, and files. Supports content search, file downloads, syllabus retrieval, and bulk course exports via 13 integrated tools.59MIT
- AlicenseAqualityDmaintenanceTurns Canvas LMS into a scriptable pipeline and exposes it to AI assistants via MCP for querying courses, grades, assignments, and syncing files using natural language.143MIT
Related MCP Connectors
Convert files and authorized public HTTPS pages to Markdown with secure job and billing guidance.
Scan URLs for WCAG 2.1 violations, generate AI fixes, and produce VPAT 2.5 compliance reports.
Source-first URL clone, capture, rebuild, and fidelity verification tools.
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/jasp-nerd/courseforge'
If you have feedback or need assistance with the MCP directory API, please join our Discord server