gdb_start
Start a GDB debugging session by specifying the GDB executable path and working directory, enabling inspection of variables and execution of commands via the MCP GDB Server.
Instructions
Start a new GDB session
Input Schema
Name | Required | Description | Default |
---|---|---|---|
gdbPath | No | Path to the GDB executable (optional, defaults to "gdb") | |
workingDir | No | Working directory for GDB (optional) |
Input Schema (JSON Schema)
{
"properties": {
"gdbPath": {
"description": "Path to the GDB executable (optional, defaults to \"gdb\")",
"type": "string"
},
"workingDir": {
"description": "Working directory for GDB (optional)",
"type": "string"
}
},
"type": "object"
}