systemprompt-mcp 0.43.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
.media-frame {
    display: flex;
    /* Artwork beside a player has to be able to stack: without wrapping, a
     * narrow frame squeezed the 4.5rem artwork against the controls. */
    flex-wrap: wrap;
    align-items: center;
    gap: var(--mcpui-space-4);
    padding: var(--mcpui-space-4);
    border: 1px solid var(--mcpui-border);
    border-radius: var(--mcpui-radius-card);
    background: var(--mcpui-surface);
    box-shadow: var(--mcpui-shadow-card);
}

.media-element {
    width: 100%;
    min-width: 12rem;
    flex: 1 1 12rem;
    max-width: 100%;
    border-radius: var(--mcpui-radius-inner);
}

/* Reserve the box before metadata loads, so the frame does not jump and
 * re-post its height to the host mid-load. */
video.media-element {
    aspect-ratio: 16 / 9;
    background: var(--mcpui-surface-sunken);
}

.media-artwork {
    width: 4.5rem;
    height: 4.5rem;
    object-fit: cover;
    border-radius: var(--mcpui-radius-inner);
    flex: none;
}

.media-caption {
    color: var(--mcpui-ink-dim);
    font-size: var(--mcpui-text-sm);
}