Skip to content
VS Code

IQMS / DELMIA Apriso for VS Code

io.github.wyre-ai/iqms-mcp

MCP server for IQMS (DELMIAworks) ERP — manufacturing, inventory, production, and quality.

client:VS Code transport:stdio runtime:oci

Install IQMS / DELMIA Apriso in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "iqms-oracle-connect-string",
      "description": "IQMS_ORACLE_CONNECT_STRING",
      "password": true
    },
    {
      "type": "promptString",
      "id": "iqms-oracle-user",
      "description": "IQMS_ORACLE_USER",
      "password": true
    },
    {
      "type": "promptString",
      "id": "iqms-oracle-password",
      "description": "IQMS_ORACLE_PASSWORD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mcp-transport",
      "description": "MCP_TRANSPORT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "auth-mode",
      "description": "AUTH_MODE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "log-level",
      "description": "LOG_LEVEL",
      "password": true
    }
  ],
  "servers": {
    "iqms-mcp": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/wyre-ai/iqms-mcp:v1.2.14"
      ],
      "env": {
        "IQMS_ORACLE_CONNECT_STRING": "${input:iqms-oracle-connect-string}",
        "IQMS_ORACLE_USER": "${input:iqms-oracle-user}",
        "IQMS_ORACLE_PASSWORD": "${input:iqms-oracle-password}",
        "MCP_TRANSPORT": "${input:mcp-transport}",
        "AUTH_MODE": "${input:auth-mode}",
        "LOG_LEVEL": "${input:log-level}"
      }
    }
  }
}

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

IQMS / DELMIA Apriso in other clients