-
Notifications
You must be signed in to change notification settings - Fork 92
Installation Prerequisites
Sven Scharmentke edited this page Oct 22, 2025
·
3 revisions
Install WinDbg/CDB (choose one):
winget install 9PGJGD53TN86 --accept-source-agreements --accept-package-agreementsInstall Debugging Tools for Windows from the Windows SDK.
Download from Microsoft's WinDbg page
Test that CDB is accessible:
cdb.exe -versionChoose based on your preferred installation method:
Install uv for the fastest Python package management:
Install uv:
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"Alternative via pip:
pip install uvVerify installation:
uv --versionPython 3.10+ required.
Check existing Python:
python --versionInstall Python (if needed):
winget install Python.Python.3.12Verify pip:
pip --versionUpgrade pip:
python -m pip install --upgrade pip- Claude Desktop application installed
- uv installed (see above)
- VS Code installed
- GitHub Copilot extension installed
- uv installed (recommended) or Python + pip
- MCP enabled in settings:
- Open settings (
Ctrl+,) - Search "MCP"
- Enable "Model Context Protocol in Chat"
- Open settings (
- MCP-compatible client installed
- Check client documentation for MCP registry support
Configure Windows symbol path for better debugging:
setx _NT_SYMBOL_PATH "SRV*C:\Symbols*https://msdl.microsoft.com/download/symbols"-
Test debugging tools:
cdb.exe -version
-
Test Python/uv:
# For uv users uv --version # For Python users python --version pip --version
-
Test symbol access:
echo %_NT_SYMBOL_PATH%
CDB not found:
- Ensure Debugging Tools are installed
- Check PATH includes CDB location
- Try full path:
"C:\Program Files (x86)\Windows Kits\10\Debuggers\x64\cdb.exe"
uv installation fails:
- Try alternative installation methods
- Check PowerShell execution policy
- Install via pip as fallback
Python version too old:
- Install Python 3.10+ via winget or python.org
- Use
py -3.10or later if multiple versions installed
Choose your installation method:
- Use in Claude Desktop - uvx recommended
- Use in VS Code - pip/source installation
- Use in Copilot CLI - MCP registry
- Installation Overview - All options