attach_debugger
Attach a debugger to a running Node.js process by specifying the debug port, enabling code analysis, breakpoints, and expression evaluation.
Instructions
Attach debugger to a running Node.js process
Input Schema
Name | Required | Description | Default |
---|---|---|---|
port | Yes | Debug port to connect to |
Input Schema (JSON Schema)
{
"properties": {
"port": {
"description": "Debug port to connect to",
"type": "number"
}
},
"required": [
"port"
],
"type": "object"
}