agentox_core/lib.rs
1//! AgentOx Core — audit engine for MCP server conformance, security, and behavior.
2//!
3//! This library provides the core audit logic that powers the `agentox` CLI tool.
4//! It can also be embedded in other tools that need to audit MCP servers programmatically.
5
6pub mod checks;
7pub mod client;
8pub mod error;
9pub mod protocol;
10pub mod report;