gdb_command
Execute GDB debugging commands via API to manage sessions, set breakpoints, and inspect variables within the MCP GDB Server environment.
Instructions
Execute a GDB command
Input Schema
Name | Required | Description | Default |
---|---|---|---|
command | Yes | GDB command to execute | |
sessionId | Yes | GDB session ID |
Input Schema (JSON Schema)
{
"properties": {
"command": {
"description": "GDB command to execute",
"type": "string"
},
"sessionId": {
"description": "GDB session ID",
"type": "string"
}
},
"required": [
"sessionId",
"command"
],
"type": "object"
}