systemprompt-mcp 0.10.3

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
14
//! Postgres persistence for MCP: tool-execution records and aggregate stats,
//! session state, and tool-output artifacts.

mod artifact;
mod session;
mod tool_usage;

pub use artifact::{CreateMcpArtifact, McpArtifactRecord, McpArtifactRepository};
pub use session::{McpSessionRecord, McpSessionRepository};
pub use tool_usage::ToolUsageRepository;

pub mod prelude {
    pub use super::{CreateMcpArtifact, McpArtifactRecord, McpArtifactRepository};
}