systemprompt-mcp 0.32.2

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
const CARD_CTA_BY_ID = new Map((window.CARD_CTAS || []).map((cta) => [cta.id, cta]));

for (const button of document.querySelectorAll('.card-cta')) {
    button.addEventListener('click', () => {
        const cta = CARD_CTA_BY_ID.get(button.dataset.ctaId);
        if (!cta) {
            return;
        }
        McpAppBridge.sendMessage(cta.message).catch((err) => {
            console.error('Sending message to host failed:', err);
        });
    });
}