systemprompt-mcp 0.44.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
//! Postgres persistence for MCP: tool-execution records and aggregate stats,
//! session state, proxy session identities, and tool-output artifacts.
//!
//! Copyright (c) systemprompt.io — Business Source License 1.1.
//! See <https://systemprompt.io> for licensing details.

mod artifact;
mod proxy_identity;
mod session;
mod tool_usage;

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

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