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.
let chartInstance = null;

function initChart() {
    const ctx = document.getElementById('chart');
    if (!ctx) return;

    const config = window.CHART_CONFIG;

    chartInstance = new Chart(ctx, config);
}

if (typeof Chart !== 'undefined') {
    document.addEventListener('DOMContentLoaded', initChart);
} else {
    const script = document.createElement('script');
    script.src = window.CHART_JS_CDN;
    script.onload = initChart;
    document.head.appendChild(script);
}