dxpert.ai — free UNS tools (no API key) for VS Code
ai.dxpert/uns-tools
Free Sparkplug B topic linting, UNS naming checks and AI-readiness screening. No API key.
client:VS Code
transport:stdio
runtime:npm
Install dxpert.ai — free UNS tools (no API key) in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "dxpert-api-base",
"description": "DXPERT_API_BASE",
"password": true
}
],
"servers": {
"uns-tools": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@dxpert/uns-tools"
],
"env": {
"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