embedded-debugger-mcp 0.1.0

A Model Context Protocol server for embedded debugging with probe-rs - supports ARM Cortex-M, RISC-V debugging via J-Link, ST-Link, and more
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Embedded Debugger MCP Server
//! 
//! A Model Context Protocol server for embedded debugging using probe-rs.
//! Provides AI assistants with comprehensive debugging capabilities for
//! embedded systems including ARM Cortex-M, RISC-V, J-Link, DAPLink, ST-Link, and other debug probes.

pub mod config;
pub mod error;
pub mod utils;
pub mod debugger;
pub mod rtt;
pub mod flash;
pub mod tools;

pub use error::{DebugError, Result};
pub use config::Config;
pub use tools::EmbeddedDebuggerToolHandler;