set_breakpoint
Set breakpoints in specific files and lines within a NodeJS server using the MCP NodeJS Debugger. Enables precise debugging by pausing execution to inspect variables and step through code.
Instructions
Sets a breakpoint at specified line and file
Input Schema
Name | Required | Description | Default |
---|---|---|---|
file | Yes | File path where to set breakpoint | |
line | Yes | Line number for breakpoint |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"file": {
"description": "File path where to set breakpoint",
"type": "string"
},
"line": {
"description": "Line number for breakpoint",
"type": "number"
}
},
"required": [
"file",
"line"
],
"type": "object"
}