cc-audit 3.11.9

Security auditor for Claude Code skills, hooks, and MCP servers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Proxy module for runtime MCP message interception.
//!
//! This module provides a TCP/TLS proxy that sits between clients and MCP servers,
//! intercepting JSON-RPC messages for security analysis.

pub mod config;
pub mod interceptor;
pub mod logger;
pub mod server;

pub use config::ProxyConfig;
pub use interceptor::{InterceptAction, MessageInterceptor};
pub use logger::{ProxyLog, ProxyLogger};
pub use server::ProxyServer;