systemprompt-mcp 0.44.0

Native Model Context Protocol (MCP) implementation for systemprompt.io. Orchestration, per-server OAuth2, RBAC middleware, and tool-call governance — the core of the AI governance pipeline.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* Autoplay was passed straight through from the payload. A video that starts
 * by itself is motion the viewer did not ask for, and CSS cannot stop it — a
 * media query can pause an animation, not a <video>. */
(() => {
    if (!window.matchMedia || !window.matchMedia('(prefers-reduced-motion: reduce)').matches) {
        return;
    }
    for (const el of document.querySelectorAll('video.media-element[autoplay], audio.media-element[autoplay]')) {
        el.autoplay = false;
        el.removeAttribute('autoplay');
        el.pause();
        /* Without controls the viewer would now have no way to start it. */
        el.controls = true;
    }
})();