Skip to content
VS Code

wpf dev pack mcp for VS Code

io.github.christian289/wpf-dev-pack-mcp

Serves WPF Dev Pack knowledge topics to AI agents from a local repo clone.

client:VS Code transport:stdio runtime:nuget

Install wpf dev pack mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "wpfdevpack-repo-path",
      "description": "WPFDEVPACK_REPO_PATH",
      "password": true
    }
  ],
  "servers": {
    "wpf-dev-pack-mcp": {
      "type": "stdio",
      "command": "dnx",
      "args": [
        "WpfDevPackMcp",
        "--yes"
      ],
      "env": {
        "WPFDEVPACK_REPO_PATH": "${input:wpfdevpack-repo-path}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

wpf dev pack mcp in other clients