<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
    <title>svnscha - plugin</title>
    <subtitle>automating annoying tasks, sharing tips, and embracing less frustration</subtitle>
    <link rel="self" type="application/atom+xml" href="https://svnscha.de/tags/plugin/atom.xml"/>
    <link rel="alternate" type="text/html" href="https://svnscha.de"/>
    <generator uri="https://astro.build/">Astro</generator>
    <updated>2026-08-27T00:00:00+00:00</updated>
    <id>https://svnscha.de/tags/plugin/atom.xml</id>
    <entry xml:lang="en">
        <title>🚀 New Release: mcp-windbg 1.2.0</title>
        <published>2026-08-27T00:00:00+00:00</published>
        <updated>2026-08-27T00:00:00+00:00</updated>
        <author>
          <name>Sven Scharmentke</name>
        </author>
        <link rel="alternate" type="text/html" href="https://svnscha.de/posts/mcp-windbg-1-2-0-release/"/>
        <id>https://svnscha.de/posts/mcp-windbg-1-2-0-release/</id>
        <summary type="html">mcp-windbg now ships as a Claude Code plugin with four debugging skills and a crash-analysis agent.</summary>
        <content type="html" xml:base="https://svnscha.de/posts/mcp-windbg-1-2-0-release/">&lt;p&gt;Version 1.2.0 of &lt;strong&gt;mcp-windbg&lt;/strong&gt; adds a Claude Code plugin. It packages the MCP server together with the instructions and workflows needed for common debugging tasks, so Claude Code can install and use it without a separate Python setup or a hand-written MCP configuration.&lt;/p&gt;
&lt;h2 id=&quot;installing-the-plugin&quot;&gt;Installing the Plugin&lt;/h2&gt;
&lt;p&gt;Add the mcp-windbg marketplace and install the plugin from Claude Code:&lt;/p&gt;
&lt;pre class=&quot;astro-code dark-plus&quot; style=&quot;background-color:#1E1E1E;color:#D4D4D4; overflow-x: auto;&quot; tabindex=&quot;0&quot; data-language=&quot;text&quot;&gt;&lt;code&gt;&lt;span class=&quot;line&quot;&gt;&lt;span&gt;/plugin marketplace add svnscha/mcp-windbg&lt;/span&gt;&lt;/span&gt;
&lt;span class=&quot;line&quot;&gt;&lt;span&gt;/plugin install mcp-windbg-uvx@mcp-windbg&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;The plugin starts mcp-windbg with &lt;code&gt;uvx&lt;/code&gt;, which downloads the pinned version from PyPI the first time it runs. You still need Windows, CDB, and &lt;code&gt;uv&lt;/code&gt;, but you do not need to install the Python package yourself.&lt;/p&gt;
&lt;p&gt;The existing &lt;code&gt;pip install mcp-windbg&lt;/code&gt; setup remains available for other MCP clients and for anyone who prefers a manual configuration.&lt;/p&gt;
&lt;h2 id=&quot;skills-for-common-debugging-tasks&quot;&gt;Skills for Common Debugging Tasks&lt;/h2&gt;
&lt;p&gt;The plugin includes four skills:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;&lt;code&gt;analyze-dump&lt;/code&gt;&lt;/strong&gt; guides the analysis of a Windows crash dump.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;code&gt;debug-remote&lt;/code&gt;&lt;/strong&gt; works with a live user-mode target through CDB.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;code&gt;kernel-debug&lt;/code&gt;&lt;/strong&gt; handles live kernel debugging with KD.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;code&gt;windbg-doctor&lt;/code&gt;&lt;/strong&gt; checks the local setup when CDB, KD, symbols, or the MCP server are not working as expected.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;These skills only load when they are needed, which keeps the plugin's normal context use small. The underlying MCP tools are still available directly when you want to run a specific command or control a session yourself.&lt;/p&gt;
&lt;h2 id=&quot;the-crash-analyst-agent&quot;&gt;The Crash Analyst Agent&lt;/h2&gt;
&lt;p&gt;The plugin also includes a read-only &lt;strong&gt;&lt;code&gt;crash-analyst&lt;/code&gt;&lt;/strong&gt; agent. It can investigate a dump independently and return:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;its likely cause&lt;/li&gt;
&lt;li&gt;the debugger evidence supporting that conclusion&lt;/li&gt;
&lt;li&gt;alternative causes it checked&lt;/li&gt;
&lt;li&gt;practical next steps&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The agent is kept away from mutating tools. It can inspect a debugging session, but it cannot resume a target or perform another action that would change its state.&lt;/p&gt;
&lt;h2 id=&quot;symbols-by-default&quot;&gt;Symbols by Default&lt;/h2&gt;
&lt;p&gt;Readable stack traces depend on symbols, and missing symbol configuration is a common source of poor results. The plugin now provides the Microsoft symbol server as the default value for &lt;code&gt;_NT_SYMBOL_PATH&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;If you already have &lt;code&gt;_NT_SYMBOL_PATH&lt;/code&gt; configured, the plugin leaves it unchanged. Existing private symbol servers and custom cache paths therefore continue to work.&lt;/p&gt;
&lt;h2 id=&quot;a-small-121-follow-up&quot;&gt;A Small 1.2.1 Follow-up&lt;/h2&gt;
&lt;p&gt;Version 1.2.1 followed later the same day. It reorganized the README installation guide by client and fixed a corrupted &lt;code&gt;C:\dumps\app.dmp&lt;/code&gt; example that contained a hidden control character. There were no runtime changes, so it does not need a separate post.&lt;/p&gt;
&lt;h2 id=&quot;getting-started&quot;&gt;Getting Started&lt;/h2&gt;
&lt;p&gt;Use the two plugin commands above for Claude Code, or upgrade the Python package for another MCP client:&lt;/p&gt;
&lt;pre class=&quot;astro-code dark-plus&quot; style=&quot;background-color:#1E1E1E;color:#D4D4D4; overflow-x: auto;&quot; tabindex=&quot;0&quot; data-language=&quot;bash&quot;&gt;&lt;code&gt;&lt;span class=&quot;line&quot;&gt;&lt;span style=&quot;color:#DCDCAA&quot;&gt;pip&lt;/span&gt;&lt;span style=&quot;color:#CE9178&quot;&gt; install&lt;/span&gt;&lt;span style=&quot;color:#569CD6&quot;&gt; -U&lt;/span&gt;&lt;span style=&quot;color:#CE9178&quot;&gt; mcp-windbg&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;See the full release notes for &lt;a href=&quot;https://github.com/svnscha/mcp-windbg/releases/tag/v1.2.0&quot;&gt;v1.2.0&lt;/a&gt; and &lt;a href=&quot;https://github.com/svnscha/mcp-windbg/releases/tag/v1.2.1&quot;&gt;v1.2.1&lt;/a&gt;. The source and plugin marketplace are available in the &lt;a href=&quot;https://github.com/svnscha/mcp-windbg&quot;&gt;mcp-windbg repository&lt;/a&gt;.&lt;/p&gt;
</content>
    </entry>
</feed>
