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.
1
2
3
4
5
6
7
8
9
10
//! MCP tool-schema handling.
//!
//! Loads JSON schemas for server tools and validates tool inputs and
//! outputs against them.

pub mod loader;
pub mod validator;

pub use loader::SchemaLoader;
pub use validator::{SchemaValidationMode, SchemaValidationReport, SchemaValidator};