embedded_debugger_mcp/lib.rs
1//! Embedded Debugger MCP Server
2//!
3//! A Model Context Protocol server for embedded debugging using probe-rs.
4//! Provides AI assistants with comprehensive debugging capabilities for
5//! embedded systems including ARM Cortex-M, RISC-V, J-Link, DAPLink, ST-Link, and other debug probes.
6
7pub mod config;
8pub mod error;
9pub mod utils;
10pub mod debugger;
11pub mod rtt;
12pub mod flash;
13pub mod tools;
14
15pub use error::{DebugError, Result};
16pub use config::Config;
17pub use tools::EmbeddedDebuggerToolHandler;