Skip to content
VS Code

Unitrends Backup for VS Code

io.github.wyre-ai/unitrends-mcp

MCP server for Unitrends Backup — appliances, jobs, recovery points, restores, alerts.

client:VS Code transport:stdio runtime:oci

Install Unitrends Backup in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "unitrends-base-url",
      "description": "UNITRENDS_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "unitrends-username",
      "description": "UNITRENDS_USERNAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "unitrends-password",
      "description": "UNITRENDS_PASSWORD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "unitrends-verify-tls",
      "description": "UNITRENDS_VERIFY_TLS",
      "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": {
    "unitrends-mcp": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/wyre-ai/unitrends-mcp:v1.1.4"
      ],
      "env": {
        "UNITRENDS_BASE_URL": "${input:unitrends-base-url}",
        "UNITRENDS_USERNAME": "${input:unitrends-username}",
        "UNITRENDS_PASSWORD": "${input:unitrends-password}",
        "UNITRENDS_VERIFY_TLS": "${input:unitrends-verify-tls}",
        "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

Unitrends Backup in other clients