openmcpgdb 0.1.5

Interactive MCP server to control gdb. Fully featured and written in rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod config;
pub mod error;
pub mod gdb;
pub mod protocol;
pub mod runtime;
pub mod server;
pub mod session;

pub use config::ServerConfig;
pub use error::{OpenMcpGdbError, Result};
pub use runtime::{run_from_config_file, run_stdio_server};
pub use server::{OpenMcpGdbServer, OpenMcpGdbServerFactory};