Skip to main content

mcp_governance_policy/
lib.rs

1//! # Governance Policy MCP Server
2//!
3//! Policy evaluation, approvals, simulation, and audit evidence for ADK-Rust Enterprise.
4//! The gatekeeper that should not be bypassable by downstream MCPs.
5
6pub mod types;
7pub mod store;
8pub mod server;
9
10pub use types::*;
11pub use store::PolicyStore;