SCORM Packager (HTML → SCORM 2004) MCP Server

Turn HTML or Claude Design bundles into LMS-ready SCORM 2004 packages — offline, tracked.

Local serverstdio

What is the SCORM Packager (HTML → SCORM 2004) MCP server?

Most developer tooling work still happens through a UI a human drives. SCORM Packager (HTML → SCORM 2004) MCP server moves it into the conversation instead. Turn HTML or Claude Design bundles into LMS-ready SCORM 2004 packages — offline, tracked.

The short version

An MCP server exposing a single tool, scorm_package, that converts a finished HTML learning module into a .zip (PIF) any SCORM-compliant LMS can import.

Getting it running

scorm-mcp-server on npm is all you need. Most clients run it directly, so configuration is a few lines and a restart.

What it needs from you

Configuration is passed through the environment: SCORM_OUTPUT_DIR. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

How it compares

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. It is maintained by giacomomaria81; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

How to install the SCORM Packager (HTML → SCORM 2004) MCP server

{
  "mcpServers": {
    "scorm": {
      "command": "npx",
      "args": ["-y", "scorm-mcp-server"],
      "env": {
        "SCORM_OUTPUT_DIR": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
SCORM_OUTPUT_DIRFilesystem location the server is allowed to use.Optional

Frequently asked questions

It connects SCORM Packager (HTML → SCORM 2004) to MCP-compatible AI assistants such as Claude and Cursor. Instead of copying data back and forth by hand, the assistant works with SCORM Packager (HTML → SCORM 2004) directly.