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
1
2
3
4
5
6
7
8
9
10
11
12
13
//! MCP tool-schema handling.
//!
//! Loads JSON schemas for server tools and validates tool inputs and
//! outputs against them.
//!
//! Copyright (c) systemprompt.io — Business Source License 1.1.
//! See <https://systemprompt.io> for licensing details.

pub mod loader;
pub mod validator;

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