Industrial-AIOps for VS Code
io.github.industrial-aiops/iaiops
Governed OT data tap: 14 field protocols + cross-protocol RCA brain; audit + MOC gating.
client:VS Code
transport:stdio
runtime:pypi
Install Industrial-AIOps in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "iaiops-mcp",
"description": "IAIOPS_MCP",
"password": true
},
{
"type": "promptString",
"id": "iaiops-config",
"description": "IAIOPS_CONFIG",
"password": true
},
{
"type": "promptString",
"id": "iaiops-master-password",
"description": "IAIOPS_MASTER_PASSWORD",
"password": true
},
{
"type": "promptString",
"id": "iaiops-no-egress",
"description": "IAIOPS_NO_EGRESS",
"password": true
}
],
"servers": {
"iaiops": {
"type": "stdio",
"command": "uvx",
"args": [
"iaiops"
],
"env": {
"IAIOPS_MCP": "${input:iaiops-mcp}",
"IAIOPS_CONFIG": "${input:iaiops-config}",
"IAIOPS_MASTER_PASSWORD": "${input:iaiops-master-password}",
"IAIOPS_NO_EGRESS": "${input:iaiops-no-egress}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs