Skip to content
VS Code

ConnectWise Automate for VS Code

io.github.wyre-ai/connectwise-automate-mcp

MCP server for ConnectWise Automate RMM — computers, clients, alerts, and scripts.

client:VS Code transport:stdio runtime:oci

Install ConnectWise Automate in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "cw-automate-server-url",
      "description": "CW_AUTOMATE_SERVER_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cw-automate-client-id",
      "description": "CW_AUTOMATE_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cw-automate-username",
      "description": "CW_AUTOMATE_USERNAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cw-automate-password",
      "description": "CW_AUTOMATE_PASSWORD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cw-automate-2fa-code",
      "description": "CW_AUTOMATE_2FA_CODE",
      "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": {
    "connectwise-automate-mcp": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/wyre-ai/connectwise-automate-mcp:v2.0.2"
      ],
      "env": {
        "CW_AUTOMATE_SERVER_URL": "${input:cw-automate-server-url}",
        "CW_AUTOMATE_CLIENT_ID": "${input:cw-automate-client-id}",
        "CW_AUTOMATE_USERNAME": "${input:cw-automate-username}",
        "CW_AUTOMATE_PASSWORD": "${input:cw-automate-password}",
        "CW_AUTOMATE_2FA_CODE": "${input:cw-automate-2fa-code}",
        "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

ConnectWise Automate in other clients