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
//! Debugger session management

pub mod discovery;

/// Configuration for a debug session
#[derive(Debug, Clone)]
pub struct SessionConfig {
    /// Connection speed in kHz
    pub speed_khz: u32,
    /// Whether to connect under reset
    pub connect_under_reset: bool,
    /// Whether to halt after connecting
    pub halt_after_connect: bool,
}