pwno-mcp includes automation tools for build steps and helper services, but they are intentionally separate from debugger control.
run_command
Use for compiles, build scripts, and short-lived helper commands.
spawn_process
Use for long-running helper processes such as local HTTP servers or listeners.
execute_python_code
Use for quick Python probes instead of
python -c.fetch_repo
Use for cloning helper repositories into
/workspace.Example flow
Guardrails
- do not use
run_commandorspawn_processto start the target ELF you want to debug - do not use
python -cinsiderun_command; useexecute_python_codeinstead - use
pwncliwhen you need interactive exploit-driver I/O instead of a generic subprocess