Step through code in a debug session
/plugin marketplace add bherbruck/mcp-debugger/plugin install mcp-debugger@mcp-debugger# Step Through Code Stepping **$ARGUMENTS.direction** in the current debug session. ## Step Directions ### step in Use `step_in` to: - Enter the next function call - Go into library code if needed - Useful when you want to understand what a function does ### step over Use `step_over` to: - Execute the current line completely - Move to the next line without entering function calls - Most common stepping action ### step out Use `step_out` to: - Complete the current function - Return to the caller - Useful when you've seen enough of the current function ## After Each Step 1. Use `get_so...