Skip to main content

windbgr_mcp/
lib.rs

1//! `windbgr-mcp` — MCP server exposing Windows process discovery and cdb
2//! debugging over stdio and Streamable HTTP.
3
4pub mod app;
5pub mod audit;
6pub mod cdb;
7pub mod config;
8pub mod error;
9pub mod mcp;
10pub mod platform;
11pub mod privilege;
12pub mod process;
13pub mod security;
14
15pub use error::{Error, Result};