systemprompt-mcp 0.46.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
/* The wrapper owns the horizontal scroll so a wide table never makes the whole
 * artifact frame scroll sideways. */
.table-wrapper {
    overflow-x: auto;
    overscroll-behavior-x: contain;
    border: 1px solid var(--mcpui-border);
    border-radius: var(--mcpui-radius-card);
    background: var(--mcpui-surface);
    box-shadow: var(--mcpui-shadow-card);
}

/* Fixed layout is what makes the table fit its frame. Under the auto algorithm
 * the widest cell in any column set the table's width, so one long subject line
 * pushed the last columns past the scroll edge, where a reader who never
 * dragged sideways simply did not know they existed. Fixed sizes every column
 * from the header row instead, and the content truncates rather than the table
 * growing. */
.data-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 0;
    font-size: var(--mcpui-text-sm);
}

.data-table th,
.data-table td {
    padding: var(--mcpui-space-2) var(--mcpui-space-3);
    text-align: left;
    border-bottom: 1px solid var(--mcpui-border);
}

/* A long value used to wrap to five lines, which inflated every row in the
 * table. It now truncates to one, so row height is constant and the table is
 * scannable down a column; `table.js` puts the full value on the element's
 * `title` so nothing is lost. The ellipsis sits on a block inside the cell
 * rather than on the cell itself, because a `td` is not a block box and does
 * not clip its own overflow. */
.data-table td .cell-text {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

.data-table th {
    position: sticky;
    top: 0;
    z-index: 1;
    background: var(--mcpui-surface-sunken);
    border-bottom-color: var(--mcpui-border-strong);
    color: var(--mcpui-ink-dim);
    font-size: var(--mcpui-text-xs);
    font-weight: 600;
    letter-spacing: var(--mcpui-tracking-wide);
    text-transform: uppercase;
    /* Headers wrap rather than truncate. A header is read once and costs its
     * second line once; a truncated one ("EXPECT…") leaves the column
     * unidentified for every row beneath it. */
    overflow-wrap: break-word;
    user-select: none;
}

.data-table th.sortable {
    cursor: pointer;
    transition: color var(--mcpui-duration) var(--mcpui-ease);
}

.data-table th.sortable:hover {
    color: var(--mcpui-ink);
}

.data-table th.sort-asc,
.data-table th.sort-desc {
    color: var(--mcpui-accent);
}

.data-table th.sort-asc::after {
    content: ' \25B2';
    font-size: 0.625rem;
}

.data-table th.sort-desc::after {
    content: ' \25BC';
    font-size: 0.625rem;
}

.data-table td {
    color: var(--mcpui-ink);
}

.data-table tbody tr {
    transition: background var(--mcpui-duration) var(--mcpui-ease);
}

.data-table tbody tr:hover {
    background: var(--mcpui-accent-wash);
}

.filter-bar {
    display: flex;
}

.filter-input {
    width: 100%;
    max-width: 20rem;
    padding: var(--mcpui-space-2) var(--mcpui-space-3);
    border: 1px solid var(--mcpui-border);
    border-radius: var(--mcpui-radius-inner);
    background: var(--mcpui-surface);
    color: var(--mcpui-ink);
    font-size: var(--mcpui-text-sm);
    transition: border-color var(--mcpui-duration) var(--mcpui-ease);
}

.filter-input::placeholder {
    color: var(--mcpui-ink-faint);
}

.filter-input:focus {
    outline: none;
    border-color: var(--mcpui-accent);
    box-shadow: 0 0 0 3px var(--mcpui-accent-wash);
}

.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--mcpui-space-3);
}

.page-info {
    color: var(--mcpui-ink-dim);
    font-size: var(--mcpui-text-sm);
    font-variant-numeric: tabular-nums;
}

.page-nav {
    display: flex;
    gap: var(--mcpui-space-2);
}

.page-nav button {
    padding: var(--mcpui-space-2) var(--mcpui-space-3);
    border: 1px solid var(--mcpui-border);
    border-radius: var(--mcpui-radius-inner);
    background: var(--mcpui-surface);
    color: var(--mcpui-ink);
    font-size: var(--mcpui-text-sm);
    cursor: pointer;
    transition: border-color var(--mcpui-duration) var(--mcpui-ease),
                background var(--mcpui-duration) var(--mcpui-ease);
}

.page-nav button:hover:not(:disabled) {
    border-color: var(--mcpui-accent-rim);
    background: var(--mcpui-accent-wash);
}

.page-nav button:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

/* A filter that matches nothing used to leave an empty bordered box with no
 * explanation, which reads as a failure rather than a result. */
.data-table td.table-empty {
    padding: var(--mcpui-space-4) var(--mcpui-space-3);
    text-align: center;
    color: var(--mcpui-ink-dim);
    border-bottom: none;
}

.data-table th.sortable:focus-visible {
    outline: 2px solid var(--mcpui-accent);
    outline-offset: -2px;
}