Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, email [email protected] and we’ll put it right.

SCORM Packager (HTML → SCORM 2004)

NPM · SCORM-MCP-SERVER · 2 COMPONENTS · SCANNED AUG 3

Turn HTML, Claude Design bundles or Teach on Mars exports into SCORM 2004/1.2 packages.

+43 this week 65 Trust /100
Trust breakdown (6 categories)

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →

Supply Chain Security87
  • No malware found by supply-chain analysis.Pass
  • Only part of the dependency tree could be resolved (129 of 134), so this covers what we could see, not the whole tree.Partial
  • No install/post-install scripts declared.Pass
  • Only part of the dependency tree could be resolved (129 of 134), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency45
Schema Quality & AI Usability54
  • AI-judged instruction clarity (excellent).Pass
  • Context-footprint check failed: tool/resource definitions use about 1672 tokens (~836/item across 2 items; 2 tools + 0 resources), over budget; trim descriptions and params. See how to fix → Fail
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management27
  • Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage100
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 100% of tool parameters carry a description.Pass
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

npm · scorm-mcp-server

# add to Claude Code
claude mcp add giacomomaria81-scorm-mcp-server -- npx -y scorm-mcp-server
# add to Codex CLI
codex mcp add giacomomaria81-scorm-mcp-server -- npx -y scorm-mcp-server
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "giacomomaria81-scorm-mcp-server": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "scorm-mcp-server"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add giacomomaria81-scorm-mcp-server --command npx --arg -y --arg scorm-mcp-server
# ~/.hermes/config.yaml
mcp_servers:
  giacomomaria81-scorm-mcp-server:
    command: "npx"
    args: ["-y", "scorm-mcp-server"]
// mcp.json
{
  "mcpServers": {
    "giacomomaria81-scorm-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "scorm-mcp-server"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 3 Aug 26 −2
    • Package version: 2.1.0 → 2.2.0 functional
  • 2 Aug 26 +62
    • Provenance: unverified → fail security
    • Install scripts: unverified → pass security
    • Known CVEs: unverified → partial security
    • Malware scan: unverified → pass security
    • Schema quality: 1149 → 836 functional
    • Tool coverage: unverified → 100 functional
    • Dependency health: unverified → partial functional
    • Maintenance: unverified → pass functional
    • MCP protocol: unverified → pass functional
    • Stability: unverified → 0.23 functional
    • Schema quality: unverified → excellent functional
    • License: unverified → pass functional
    • Licence: MIT functional
    • Package version: 2.1.0 → 2.2.0 functional
  • 1 Aug 26 −11
    • Tool coverage: 100 → unverified functional
    • First check of Schema quality: unverified functional
    • Package version: 2.0.1 → 2.1.0 functional
  • 31 Jul 26 −6
    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
  • 27 Jul 26 22

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 3 Aug 2026 · Analysed npm/[email protected]

Provenance none

Ecosystem: npm · Outcome: none

Dependencies 129 packages

129 packages in the resolved dependency tree · 127 deprecated · 41 stale.

The dependency tree was only partially resolved, so these counts may be incomplete.

MCP tools — 2 exposed · ~1,672 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
scorm_package ~1,607

Convert a self-contained HTML document, a folder, a .zip, a Claude Design (.dc) bundle OR a Teach on Mars content export into a SCORM package (.zip) — SCORM 2004 4th Edition by default, or SCORM 1.2 for legacy LMSs. Use this to turn a finished learning module (for example HTML produced by Claude Design) into a file that any SCORM-compliant LMS can import. The conversion is faithful: the HTML is preserved, external assets are inlined as data URIs so the package runs 100% offline, and a small runtime is injected to report completion and progress. TEACH ON MARS MIGRATION: if the input zip/folder contains Teach on Mars Excel activity templates (Mobile Course, Quiz Game...) plus a media folder — the format produced by the platform's content export — the tool rebuilds an interactive HTML course from them (info/transition/flash cards, scored quizzes reporting cmi.score, media embedded, TOM layout codes rendered) and packages it. No title needed: it is derived from the template file names. Combined with batch mode this migrates a whole course catalogue in one call. PROGRESS / COMPLETION MODEL (milestones): The author can mark meaningful steps with data-jalon + optional data-trigger: - <section data-jalon="histoire-produit" data-trigger="view"> ... </section> (counts when scrolled into view; "view" is the default) - <button data-jalon="argumentaire" data-trigger="click">J'ai lu</button> (counts on click) - <video data-jalon="geste" data-trigger="ended"> ... </video> (counts when playback ends) AUTOMATIC FALLBACK: if the HTML declares NO milestone, they are generated automatically from the document structure (sections → articles → h2 → h3, capped at 8, trigger "view"). So plain HTML "just works" with meaningful progress — you do NOT need to ask the author to add attributes first. Explicit data-jalon attributes always take precedence (recommended for click/video steps). The runtime reports cmi.progress_measure = milestones_reached / total, an…

NameTypeReqDescription
auto_milestonesbooleanWhen the HTML declares no [data-jalon] milestone, auto-generate 'view' milestones from the document structure (sections, then articles, then headings; max 8). Default: true.
base_urlstringBase URL to resolve relative/root-relative asset references over the network (only needed if the HTML uses relative URLs and no input_path is given).
batchbooleanTreat input_path as a DIRECTORY containing several courses (each sub-directory, .zip or .html file = one course). Produces one package per course plus a consolidated report. Course titles default to…
formatstringInput format. 'auto' (default) detects Claude Design .dc bundles by signature; override to force a pipeline.
htmlstringRaw HTML content to convert (e.g. the output of Claude Design). Provide this OR input_path.
identifierstringManifest identifier. Auto-generated from the title if omitted.
input_pathstringAbsolute path to an HTML file on disk. Its folder is used to resolve relative assets. Provide this OR html.
languagestringContent language tag (BCP-47), e.g. 'fr-FR', 'en-US', 'it-IT'. Default: 'fr-FR'. Applied as <html lang> when the source declares none.
mastery_scorenumberPass threshold 0..1. Enables score-based success (passed/failed from cmi.score.scaled) and adds sequencing objectives to the manifest. Content reports the score via window.SCORM2004.score(raw,min,max…
output_dirstringDirectory to write the .zip package into. Defaults to $SCORM_OUTPUT_DIR or ~/scorm-packages.
scorm_versionstringSCORM edition of the produced package. '2004' (default, 4th Edition) or '1.2' for legacy LMSs. The injected runtime is adaptive and works with both LMS APIs; this choice controls the manifest and bun…
success_on_completionbooleanAlso report cmi.success_status='passed' when the module completes (equivalent to adding data-scorm-success="on-completion"). Default: false.
titlestringCourse / module title, used as the manifest, organization and item title shown in the LMS. Required for HTML inputs; optional for a Teach on Mars export, where it is derived from the template file na…
vendor_cdnbooleanFor Claude Design (.dc) bundles: download CDN libs (React/Babel…) into the package so it runs offline (via window.__resources, no source patch). Default: true.

No output schema declared.

No examples provided.

scorm_selftest ~65

Diagnostic tool with NO arguments: packages a constant built-in HTML and reports version, duration and output path. Distinguishes 'server broken' from 'input problem' in one second. Writes one small file (selftest-scorm2004.zip) into the output directory.

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.