agentic-debugger

agentic-debugger

iarmankhan

Enables AI coding assistants to debug code by inserting temporary logging instruments that capture variable values at runtime. Works with JavaScript, TypeScript, and Python across multiple AI coding tools.

1135 views1Local (stdio)

What it does

  • Insert debug logging at specific code lines
  • Capture variable values during code execution
  • Start HTTP server for collecting debug logs
  • Remove debug instruments cleanly from code
  • Read and analyze captured runtime data
  • Support JavaScript, TypeScript, and Python debugging

Best for

AI coding assistants debugging runtime issuesDevelopers using Claude, Cursor, or similar toolsTroubleshooting variable state in running codeInteractive debugging without traditional debugger setup
Works with 7+ AI coding toolsLive code instrumentationBrowser debugging support with CORS

Tools (7)

start_debug_session

Start a debug session. This starts a local HTTP server to receive logs from instrumented code.

stop_debug_session

Stop the current debug session and shut down the log server.

add_instrument

Add a debug instrument at a specific line in a file. The instrument will log variable values when executed.

remove_instruments

Remove debug instruments from files.

list_instruments

List all active debug instruments.

Alternatives