Step Debugger
step_debuggerControl execution flow during debugging by stepping through code, resuming, or stepping into/out of functions to analyze program behavior.
Instructions
Controls execution flow of the debuggee. Use this to resume, step over, step into, or step out. Requires an established debugging connection which is currently paused. This command will mutate the state of the debuggee and wait up to 3 seconds for it to pause again.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| action | Yes | The execution action to perform. next = Step Over, continue = Resume. | |
| thread_id | No | The thread to step. If omitted, uses the last stopped thread. |