Skip to content
VS Code

dxpert.ai — industrial AI-readiness & UNS agents for VS Code

ai.dxpert/mcp

Industrial AI-readiness diagnostics, UNS design, and UNS agents for MCP clients.

client:VS Code transport:stdio runtime:npm

Install dxpert.ai — industrial AI-readiness & UNS agents in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "dxpert-api-key",
      "description": "DXPERT_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "dxpert-api-base",
      "description": "DXPERT_API_BASE",
      "password": true
    }
  ],
  "servers": {
    "mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@dxpert/mcp"
      ],
      "env": {
        "DXPERT_API_KEY": "${input:dxpert-api-key}",
        "DXPERT_API_BASE": "${input:dxpert-api-base}"
      }
    }
  }
}

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

dxpert.ai — industrial AI-readiness & UNS agents in other clients