Release v0.15.0
Added
- Documentation site: New MkDocs (Material) user guide under
docs/, deployed to GitHub Pages viapages.yml. Covers getting started, the use cases, and a reference for the command-line options, tools, and client configuration. Content migrated and trimmed from the project wiki. - Prompts reference: Documented the built-in
dump-triageMCP prompt and itsdump_pathargument (docs/reference/prompts.md). - Usage guide coverage: New use-case pages for running the server over HTTP (
Debug from another machine) and scrubbing tool output (Redact sensitive data), plus WER auto-capture setup in the triage guide and thedump-triageprompt in the crash-dump guide. Documented the HTTP transport's lack of authentication, that attach-by-PID is unsupported, and that sessions are concurrent.
Changed
- Package metadata: Filled in distribution metadata so
pip show/ PyPI are complete - added the author/maintainer email, project URLs (Homepage, Repository, Issues, Changelog), and classifiers for Windows, console environment, and the Debuggers/QA topics (#36) - Contributor guide: Migrated
AGENTS.mdtoCLAUDE.mdand added.claude/rules/(Markdown typography and documentation authoring), plusscripts/Format-Docs.ps1to enforce the typography rules - Docs tooling: Bumped the docs build dependencies in
requirements-docs.txtto their latest patch floors -mkdocs>=1.6.1,mkdocs-material>=9.7.6,pymdown-extensions>=10.21.3(consolidates #51, #52, #53) - Test suite: Replaced the ad-hoc tests with a declarative end-to-end harness. Each
tests/scenarios/*.yamlruns against a really-hostedpython -m mcp_windbgserver driven by a real MCP client (only the LLM is faked). Live scenarios carrylive/remotemarkers and skip cleanly without CDB, so-m "not live"runs anywhere. Addspyyamlas a dev dependency. - Coverage: The harness hosts the server under
coverage run --parallel-mode(setMCP_WINDBG_COVERAGE), so coverage reflects the subprocess where tool dispatch runs rather than the test process. The suite reaches 90%+; CI enforces a floor withcoverage report --fail-under=88(margin below the ~91% actual for cross-version and cdb-output jitter). Code that cannot be line-measured end-to-end (the streamable-http transport on Windows, atexit cleanup, debug-only and defensive branches) is excluded with documented# pragma: no coverandexclude_alsorules. Addscoverageas a dev dependency. - LFS dumps are mandatory: a scenario whose
requires.dumpfile is missing now hard-fails (rungit lfs pull) instead of skipping, so a half-set-up checkout is a loud error rather than silent green.
Removed
- Dead code: Removed three unused functions surfaced while raising test coverage -
server.execute_common_analysis_commands,CDBSession.get_session_id, andprompts.get_available_prompts. None had callers.
Fixed
- Stdio server resilience: The stdio transport no longer crashes on a malformed input line.
serve()now uses the SDK defaultraise_exceptions=False, so an unparseable line (e.g. when the server is run directly in a terminal) is logged instead of tearing down the whole process (#45)
Added
- Tool Content Filter Script Hooks: Added
--filter-scriptso trusted Python helpers can rewrite string-valued tool arguments and tool text output for use cases like PII redaction without exposing full MCP protocol messages
Added
- Live Debugger Break-In: Added the
send_ctrl_breaktool to interrupt an active CDB/WinDbg session with CTRL+BREAK for dump and remote debugging workflows (#40)
Changed
- Dependency Refresh: Updated runtime dependency floors for
mcp,pydantic,starlette, anduvicorn, and refreshed test and validation tooling versions inpyproject.toml - CI Dependency Maintenance: Updated GitHub Actions dependencies for Python setup and artifact handling in release workflows (#39, #42)
Fixed
- Registry Compatibility: Restored MCP registry compatibility by reverting
server.jsonto the supported2025-10-17schema version - Publishing Workflow: Adjusted MCP publishing workflows to match current registry publisher behavior
Fixed
- Registry Schema Migration: Updated MCP server schema from deprecated
2025-10-17to current2025-12-11version for mcp-publisher compatibility
Added
- HTTP Transport in Registry: Added
streamable-httptransport configuration to server.json for MCP registry discovery - Schema Validation in CI: New
validate-server-schema.pyscript validates server.json against the official MCP schema
Fixed
- Registry Schema Update: Updated MCP server schema version from 2025-09-29 to 2025-10-17 for compatibility with registry.modelcontextprotocol.io
- CI Cache Warning: Disabled unnecessary dependency caching in PyPI publish job to eliminate spurious warnings
Added
- HTTP Transport Support: New
--transport streamable-httpoption enables HTTP-based communication alongside the default stdio transport (#31) - MCP Prompt API: Implemented prompt templates for AI-assisted crash dump triage and analysis (#25)
Changed
- Updated Dependencies: Bumped
mcpto 1.17.0,pydanticto 2.12.0, and other dependencies (#26) - Improved Prompt Templates: Removed hard-coded model references from prompt templates for better flexibility (#29)
- Updated Dependabot Configuration: Improved automated dependency update settings
Fixed
- Session Cleanup: Prevent stale debugging sessions if
.shutdown()fails (#28)
What's New in This Release
This release focuses on making mcp-windbg more reliable, faster, and easier to use for everyone - from beginners to advanced users.
New Features
Core
- Live debugging session support via
open_windbg_remoteandclose_windbg_remote - Extended dump file support for
.mdmpand.hdmpformats - Microsoft Store WinDbg CDB compatibility
Devops
- Set up continuous integration that automatically tests the code with Python versions 3.10 through 3.14
- Added automatic dependency updates to keep everything secure and up-to-date
- Streamlined the release process so new versions reach users faster
Development
- Switched to
uv- a lightning-fast Python package manager that's 10-100x faster than pip - Development setup is now much quicker with commands like
uv syncanduv run - More reliable builds with locked dependency versions
Documentation
- Added comprehensive debugging instructions for AI assistants (
AGENTS.md) - Created structured templates to help analyze crash dumps more effectively (
.github/prompts/dump-triage.prompt.md) - All documentation is now available in the repository Wiki for easy access
- Simplified the main
README.mdto focus on getting started quickly - Added this structured
CHANGELOG.mdto track all project changes
Improvements
Performance Boost: Build times are significantly faster thanks to the new tooling
Enhanced Security: Automatic scanning and updates keep dependencies secure
Community Contributions
Special thanks to @sooknarine for these valuable contributions:
-
Find local dumps with other common extensions #6 - Now finds more crash dump files automatically
-
Add support for remote debugging #10 - Connect to live debugging sessions
-
Initial version as blogged about.