windbgr-mcp 0.1.0

MCP server for Windows debugging
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! `windbgr-mcp` — MCP server exposing Windows process discovery and cdb
//! debugging over stdio and Streamable HTTP.

pub mod app;
pub mod audit;
pub mod cdb;
pub mod config;
pub mod error;
pub mod mcp;
pub mod platform;
pub mod privilege;
pub mod process;
pub mod security;

pub use error::{Error, Result};