Skip to content
VS Code

SCORM Packager (HTML → SCORM 2004) for VS Code

io.github.giacomomaria81/scorm-mcp-server

Turn HTML or mobile-learning exports into SCORM 2004/1.2 packages, and validate any SCORM zip.

client:VS Code transport:stdio runtime:npm

Install SCORM Packager (HTML → SCORM 2004) in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "scorm-output-dir",
      "description": "SCORM_OUTPUT_DIR",
      "password": true
    }
  ],
  "servers": {
    "scorm-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "scorm-mcp-server"
      ],
      "env": {
        "SCORM_OUTPUT_DIR": "${input:scorm-output-dir}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

SCORM Packager (HTML → SCORM 2004) in other clients