CI / Check (push) Has been skipped
CI / Detect Changes (push) Successful in 5s
CI / Deploy Agent (push) Successful in 8m13s
CI / Deploy Dashboard (push) Successful in 7m3s
CI / Deploy Docs (push) Has been skipped
CI / Deploy MCP (push) Successful in 1m50s
MCP server validates per-tenant bearer tokens on incoming calls and routes each tool to the caller's tenant DB. Closes the cross-tenant data leak in the MCP path identified in M7.3.
26 lines
501 B
Rust
26 lines
501 B
Rust
pub mod admin;
|
|
pub mod chat;
|
|
pub mod dast;
|
|
pub mod dto;
|
|
pub mod findings;
|
|
pub mod graph;
|
|
pub mod health;
|
|
pub mod help_chat;
|
|
pub mod issues;
|
|
pub mod mcp_tokens;
|
|
pub mod notifications;
|
|
pub mod pentest_handlers;
|
|
pub use pentest_handlers as pentest;
|
|
pub mod repos;
|
|
pub mod sbom;
|
|
pub mod scans;
|
|
|
|
// Re-export all handler functions so routes.rs can use `handlers::function_name`
|
|
pub use dto::*;
|
|
pub use findings::*;
|
|
pub use health::*;
|
|
pub use issues::*;
|
|
pub use repos::*;
|
|
pub use sbom::*;
|
|
pub use scans::*;
|