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
//! Embedded debugger MCP tools module
//! 
//! This module provides a unified tool handler for all embedded debugging operations
//! using the RMCP 0.3.2 API patterns, similar to the serial-mcp-rs implementation.

// Module declarations
pub mod debugger_tools;
pub mod types;

// Export all 18 tools (13 base debugging + 5 RTT communication)
pub use debugger_tools::*;
pub use types::*;