Skip to content

Advanced Usage & Architecture

mnemonic edited this page Sep 9, 2026 · 2 revisions

Advanced Usage & Architecture

πŸ“Œ Full Architecture Source: Read the complete public document at guides/Advanced_Usage_Guide.md.

WinDbgX-MCP supports 4 primary connection modes:

  1. Crash Dump Triage (open_cdb_dump): Automated triage of .dmp crash files.
  2. User-Mode Remote Server (open_cdb_remote): Connect to live desktop WinDbg GUI servers (tcp:Port=5005).
  3. Kernel Debugging Target (open_kd_session_tool): Kernel debugging via KDNET, VM Pipe, or Serial.
  4. Live Local Process Attach (attach_live_process): Attach CDB by PID or process name.

Multi-Session Orchestration

Inspect and switch between multiple user-mode and kernel debugging sessions concurrently:

  • list_sessions(): View all active debug sessions.
  • switch_session(session_id="..."): Switch default active session.

Clone this wiki locally