Skip to content
VS Code

TractorBeeam365 MCP for VS Code

io.github.ringosystems/tractorbeeam-mcp

MCP server for Veeam Backup for Microsoft 365: read-only review + gated, audited restore tier.

client:VS Code transport:stdio runtime:oci

Install TractorBeeam365 MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "vb365-host",
      "description": "VB365_HOST",
      "password": true
    },
    {
      "type": "promptString",
      "id": "vb365-username",
      "description": "VB365_USERNAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "vb365-password",
      "description": "VB365_PASSWORD",
      "password": true
    }
  ],
  "servers": {
    "tractorbeeam-mcp": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/ringosystems/tractorbeeam-mcp:2.2.0"
      ],
      "env": {
        "VB365_HOST": "${input:vb365-host}",
        "VB365_USERNAME": "${input:vb365-username}",
        "VB365_PASSWORD": "${input:vb365-password}"
      }
    }
  }
}

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

TractorBeeam365 MCP in other clients