Interactive Xdebug step-debugging client for your terminal.
100n will repeat "step into" 100 times.cargo build.--log: Debug log to file.--listen: Listen on an alternative address (defaults to 0.0.0.0:9003).In addition you can optionally specify a process to debug:
$ debug-tui -- php path/to/script.php
Prefix with number to repeat:
r runn next / step intoN step overp previous (switches to history mode if in current mode)o step outR restart process if one was providedj downJ down 10k upK up 10h leftH left 10l rightL right 10+ increase context depth- decrease context depthtab switch paneenter toggle pane focus (full screen)t rotate the theme? Show helpf Filter (context pane) - use dot notation to filter on multiple levels.debug-tui has no mechanism for setting a breakpoint but you can use the
function xdebug_break() in your code:
<?php
function my_function() {
xdebug_break(); // break after this line
}
$ claude mcp add debug-tui \
-- python -m otcore.mcp_server <graph>