delete_breakpoint
Remove a specific breakpoint in the MCP NodeJS Debugger by providing the breakpoint ID to streamline debugging and code inspection.
Instructions
Deletes a specified breakpoint
Input Schema
Name | Required | Description | Default |
---|---|---|---|
breakpointId | Yes | ID of the breakpoint to remove |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"breakpointId": {
"description": "ID of the breakpoint to remove",
"type": "string"
}
},
"required": [
"breakpointId"
],
"type": "object"
}