Skip to content
VS Code

Axcient x360Recover for VS Code

io.github.wyre-technology/axcient-mcp

MCP server for Axcient x360Recover — BCDR clients, devices, jobs, vaults, and appliances.

client:VS Code transport:stdio runtime:oci

Install Axcient x360Recover in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "axcient-api-key",
      "description": "AXCIENT_API_KEY",
      "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": {
    "axcient-mcp": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/wyre-technology/axcient-mcp:v1.0.1"
      ],
      "env": {
        "AXCIENT_API_KEY": "${input:axcient-api-key}",
        "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

Axcient x360Recover in other clients