SCORM Packager (HTML → SCORM 2004)
MCPB · SCORM-MCP-SERVER-2.2.0.MCPB · 2 COMPONENTS · SCANNED AUG 3
Turn HTML, Claude Design bundles or Teach on Mars exports into SCORM 2004/1.2 packages.
Available components
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 Security13
- Malware scan not yet available for this package.Unverified
- CVE data not yet available for this package.Unverified
- 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
- Source repository is publicly reachable at the declared URL. View diagnostics → Pass
- Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
- Clear OSI-approved license (MIT).Pass
- Actively maintained (last published 0 days ago).Pass
- Disclosure check failed: no security disclosure policy was found in the source repository. See how to fix → Fail
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 Management0
- Stability not yet verified: not enough scan history yet (needs a 30-day window).Unverified
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
Unverified: 1 category
A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.
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.
mcpb · scorm-mcp-server-2.2.0.mcpb
Download bundleEvery 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.
- 2 Aug 26 39
First indexed and scored.
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 mcpb/https://github.com/giacomomaria81/scorm-mcp-server/releases/download/v2.2.0/[email protected]
Provenance none
Ecosystem: mcpb · Outcome: none
Dependencies 129 packages
129 packages in the resolved dependency tree · 129 deprecated · 41 stale.
The dependency tree was only partially resolved, so these counts may be incomplete.
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.
scorm_package Package HTML as SCORM (2004 or 1.2) ~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…
| Name | Type | Req | Description |
|---|---|---|---|
| auto_milestones | boolean | — | When 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_url | string | — | Base 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). |
| batch | boolean | — | Treat 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… |
| format | string | — | Input format. 'auto' (default) detects Claude Design .dc bundles by signature; override to force a pipeline. |
| html | string | — | Raw HTML content to convert (e.g. the output of Claude Design). Provide this OR input_path. |
| identifier | string | — | Manifest identifier. Auto-generated from the title if omitted. |
| input_path | string | — | Absolute path to an HTML file on disk. Its folder is used to resolve relative assets. Provide this OR html. |
| language | string | — | Content 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_score | number | — | Pass 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_dir | string | — | Directory to write the .zip package into. Defaults to $SCORM_OUTPUT_DIR or ~/scorm-packages. |
| scorm_version | string | — | SCORM 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_completion | boolean | — | Also report cmi.success_status='passed' when the module completes (equivalent to adding data-scorm-success="on-completion"). Default: false. |
| title | string | — | Course / 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_cdn | boolean | — | For 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 SCORM packager self-test ~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.