CoursePack Local MCP Server
Converts Canvas .imscc course exports into Markdown, extracts assignments, discussions, quizzes, and module structures, and generates local reports and search capabilities.
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., "@CoursePack Local MCP Serversearch for 'exam' in my latest course"
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.
CoursePack Local MVP v9
CoursePack Local converts Canvas .imscc course exports into a clean, local Markdown coursepack. It now includes a local web interface, course viewer, search, safe skip logging, and a read-only MCP server connection for Claude Desktop.
The project is still an MVP, but v9 is closer to a deployable instructor workflow:
Double-click
Start CoursePack Local.bat.Browser opens at
http://127.0.0.1:3333.Upload a Canvas
.imsccexport.Review the converted course, skipped files, and report.
Search the converted course.
Connect the local read-only MCP server to Claude Desktop.
What changed in v9
Added a stronger Recent Courses page with last-updated information, quick actions, and local delete buttons.
Added built-in local reports that do not require AI: date findings, link findings, missing local links, policy mentions, skipped-file summary, and workload by module.
Reports are saved as
reports/reports.mdandreports/reports.jsonin each converted course.Added a Help page explaining how instructors open CoursePack again after the first install.
Added a user-level uninstall helper:
Uninstall CoursePack Local.batanduninstall.ps1.Added MCP tools for Claude to read the built-in reports.
Kept v8 behavior: the one-line installer does not auto-connect Claude Desktop during installation.
Kept v8 behavior: installer starts CoursePack first, opens the local browser page when possible, and creates Desktop/Start Menu shortcuts.
Kept v8 behavior: Claude connection has immediate browser feedback and is idempotent.
Related MCP server: vulcan-file-ops
What it does now
Reads a Canvas
.imsccfile as a ZIP archive.Parses
imsmanifest.xmlandcourse_settings/module_meta.xmlwhen present.Converts Canvas wiki HTML pages to Markdown.
Converts assignment HTML pages and assignment metadata.
Converts discussion/announcement XML topic bodies.
Extracts basic quiz/QTI text.
Builds module index files.
Converts loose instructor-uploaded text-like files, such as
.html,.txt,.md,.csv, and.json.Skips images, audio, video, PowerPoint, Office files, PDFs, unknown files, and very large files by default.
Can optionally attempt PDF/Office conversion with Microsoft MarkItDown if the optional dependency is installed.
Writes a human-readable
conversion_report.md.Writes structured metadata in
metadata/course_map.json,metadata/skipped_assets.json,metadata/conversion_events.json, andmetadata/resource_map.json.Runs a local web app for upload, review, search, reports, and download.
Provides built-in rule-based reports that work without AI.
Provides a read-only MCP server for Claude Desktop.
Windows quick start
Unzip the CoursePack folder.
Double-click:
Start CoursePack Local.batThe first run creates a local .venv and installs required packages.
Open or wait for the browser page:
http://127.0.0.1:3333Upload a Canvas
.imsccexport and click Convert Course.
Using CoursePack after the first install
Instructors do not run the one-line installer every time. The one-line command is only for first install or reinstall/update.
After CoursePack is installed, use one of these:
Desktop shortcut: CoursePack Local
Start Menu shortcut: CoursePack Local
Manual address after starting: http://127.0.0.1:3333Converted courses and app data are stored in the user's local profile:
%LOCALAPPDATA%\CoursePackLocalIf CoursePack is already running and the instructor clicks the shortcut again, the app should simply open the browser page instead of failing because the port is already in use.
Claude connection timing
CoursePack does not need a converted course before the MCP connector can be registered with Claude Desktop, but Claude will not have useful course content until at least one Canvas export is converted.
Recommended flow:
1. Install CoursePack.
2. Open the local CoursePack page.
3. Convert a Canvas export.
4. Click Claude Desktop > Connect CoursePack to Claude Desktop.
5. Fully quit and reopen Claude Desktop.The installer intentionally does not auto-connect Claude anymore. This prevents a Claude/Windows security problem from blocking the app startup.
Check the install
After running CoursePack once, double-click:
Check CoursePack Install.batThis checks Python, required packages, local app files, and Claude configuration readability.
To remove the local app later, use the Start Menu shortcut or run:
Uninstall CoursePack Local.batConnect to Claude Desktop
Windows note: Standalone Claude and Microsoft Store Claude use different claude_desktop_config.json files. CoursePack's Connect button updates all relevant config files so the Claude you actually launch can see the coursepack MCP tools.
The easiest method is from the browser UI:
Open CoursePack Local.
Go to Claude Desktop in the top navigation.
Click Connect CoursePack to Claude Desktop.
Fully quit Claude from the system tray (Quit — not just close the window).
Reopen Claude and look for
coursepackMCP tools.
If tools are still missing on Microsoft Store Claude, check:
%LOCALAPPDATA%\Packages\Claude_*\LocalCache\Roaming\Claude\logs\mcp.log
Claude Desktop reads local MCP servers from its config file(s). CoursePack adds a coursepack MCP server entry pointing to the packaged .exe (--mcp) or local Python + mcp_server.py in source mode.
What Claude can access
The MCP server is read-only. It exposes:
converted Markdown course files
course map metadata
conversion report
skipped assets log
conversion events log
local search tools
It does not write back to Canvas.
Failure behavior
A single bad file should never stop the full course conversion.
The converter records:
converted files in
metadata/course_map.jsonskipped files in
metadata/skipped_assets.jsonwarnings/errors in
metadata/conversion_events.jsona readable summary in
conversion_report.md
If a document cannot be converted, CoursePack skips it, logs it, and keeps converting the rest of the course.
Optional document conversion
By default, PDFs and Office files are skipped because they can be large, slow, or messy.
To attempt conversion of PDF/Office files, install the optional converter dependency:
pip install -r requirements-docs.txtThen enable the optional document conversion checkbox in the upload page.
If MarkItDown is not installed, the converter will skip those files, record the reason, and continue.
Media files skipped by default
Skipped by default:
images:
.jpg,.jpeg,.png,.gif,.webp,.svg,.bmp,.tif,.tiff,.heicaudio:
.mp3,.wav,.m4a,.aac,.ogg,.flacvideo:
.mp4,.mov,.avi,.mkv,.webm,.wmv,.m4vPDF/Office files unless optional conversion is enabled
unknown file types
large files above the conversion size limit
Current deployment limitations
This is closer to deployment, but not fully packaged for nontechnical instructors yet.
Source/dev mode still requires:
Python installed on the computer
first-run package installation into
.venvWindows batch files for startup
Portable/release mode bundles Python with PyInstaller. Some managed university computers may still block unknown unsigned executables. In that case, use the source/dev mode or ask IT to allow/sign the executable.
Recommended next steps
Test v9 on Windows with and without Claude Desktop installed.
Test with several Canvas exports from different course types.
If managed computers block the unsigned portable executable, add code signing or an IT-deployed MSI.
Add optional AI chat inside the local browser UI.
Add a Claude Desktop
.mcpbextension package later for the cleanest Claude install experience.
One-line Windows installer
Recommended (window stays open on managed PCs):
powershell -NoProfile -ExecutionPolicy Bypass -NoExit -Command "iex (irm 'https://raw.githubusercontent.com/digaocoite/canvasmcplocal/main/install.ps1')"Repo: digaocoite/canvasmcplocal. See ONE_LINE_INSTALL.md for details.
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
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/digaocoite/canvasmcplocal'
If you have feedback or need assistance with the MCP directory API, please join our Discord server