★ 68 stars
Rust
💻 Code/Dev Tools
Updated 17d ago
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
View on GitHub →
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Add to claude_desktop_config.json:
{
"mcpServers": {
"embedded-debugger-mc": {
"command": "cargo",
"args": [
"run",
"--",
"embedded-debugger-mcp"
]
}
}
}
Run in terminal:
claude mcp add embedded-debugger-mc cargo run -- embedded-debugger-mcp
Add to .cursor/mcp.json:
{
"mcpServers": {
"embedded-debugger-mc": {
"command": "cargo",
"args": [
"run",
"--",
"embedded-debugger-mcp"
]
}
}
}