Skip to content
VS Code

XAF Logic Explainer for VS Code

io.github.peopleworks/xaf-logic-explainer

Query your DevExpress XAF app: entities, controllers, actions, rules, Model Editor.

client:VS Code transport:stdio runtime:nuget

Install XAF Logic Explainer in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "xaflogic-project",
      "description": "XAFLOGIC_PROJECT",
      "password": true
    }
  ],
  "servers": {
    "xaf-logic-explainer": {
      "type": "stdio",
      "command": "dnx",
      "args": [
        "XafLogicExplainer.Mcp",
        "--yes"
      ],
      "env": {
        "XAFLOGIC_PROJECT": "${input:xaflogic-project}"
      }
    }
  }
}

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

XAF Logic Explainer in other clients