removeBreakpoint
Eliminate a breakpoint during debugging by specifying the session and breakpoint IDs. This tool is part of the Delve MCP server, designed for managing Go program debugging tasks efficiently.
Instructions
Remove a breakpoint
Input Schema
Name | Required | Description | Default |
---|---|---|---|
breakpointId | Yes | ID of the breakpoint to remove | |
sessionId | Yes | ID of the debug session |
Input Schema (JSON Schema)
{
"properties": {
"breakpointId": {
"description": "ID of the breakpoint to remove",
"type": "number"
},
"sessionId": {
"description": "ID of the debug session",
"type": "string"
}
},
"required": [
"sessionId",
"breakpointId"
],
"type": "object"
}