systemprompt-mcp 0.14.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
//! Multi-server lifecycle and state orchestration: tool discovery/loading
//! across MCP servers and runtime service-state lookups backed by the database.

mod loader;
mod models;
mod state;

pub use loader::McpToolLoader;
pub use models::{McpServerConnectionInfo, McpServiceState, ServerStatus, SkillLoadingResult};
pub use state::ServiceStateService;
pub use systemprompt_models::a2a::McpServerMetadata;