systemprompt-mcp 0.14.5

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.
1
2
3
4
5
6
7
8
9
10
11
12
13
document.getElementById('copy-btn').addEventListener('click', async () => {
    const content = document.getElementById('text-content').innerText;
    try {
        await navigator.clipboard.writeText(content);
        const btn = document.getElementById('copy-btn');
        btn.innerHTML = '<span class="copy-icon">\u2713</span> Copied!';
        setTimeout(() => {
            btn.innerHTML = '<span class="copy-icon">\uD83D\uDCCB</span> Copy';
        }, 2000);
    } catch (err) {
        console.error('Failed to copy:', err);
    }
});