# Send Veeam MCP to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "veeam-mcp",
    "name": "Veeam MCP",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/JGM2025/veeam-mcp",
    "canonicalUrl": "https://clawhub.ai/JGM2025/veeam-mcp",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/veeam-mcp",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=veeam-mcp",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "README_QUICK.md",
      "SKILL.md",
      "credentials-template.json",
      "scripts/list-tools.sh",
      "scripts/query-veeam.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/veeam-mcp"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/veeam-mcp",
    "downloadUrl": "https://openagent3.xyz/downloads/veeam-mcp",
    "agentUrl": "https://openagent3.xyz/skills/veeam-mcp/agent",
    "manifestUrl": "https://openagent3.xyz/skills/veeam-mcp/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/veeam-mcp/agent.md"
  }
}
```
## Documentation

### Veeam Intelligence MCP Skill

Interact with Veeam Backup & Replication (VBR) and Veeam ONE through an MCP (Model Context Protocol) server running in Docker.

### Natural Language Commands

When the user asks things like:

"What backup jobs failed last night?"
"Show me backup status for all VMs"
"What's my backup repository capacity?"
"Which VMs haven't been backed up recently?"
"Check Veeam ONE alerts"
"Analyze backup performance trends"

### What This Does

This skill wraps the Veeam Intelligence MCP server (running in Docker) and provides natural language access to:

Veeam Backup & Replication (VBR):

Backup job status and history
Repository capacity and health
VM backup status
Job configuration details
Failed job analysis

Veeam ONE:

Infrastructure monitoring
Performance analysis
Alert management
Capacity planning
Trend analysis

### Prerequisites

Docker installed and running
Veeam Backup & Replication and/or Veeam ONE with active licenses (not Community Edition)
Veeam Intelligence enabled on your Veeam servers (required for Advanced Mode)
Admin credentials for Veeam servers

### 1. Obtain Veeam Intelligence MCP Server

The Veeam Intelligence MCP server is currently in beta.

To obtain access:

Contact Veeam directly or your Veeam account representative
Visit the official Veeam community forums
Check Veeam's official channels for beta program announcements

Once you have the MCP server package, build the Docker image:

cd /path/to/veeam-mcp-server
docker build -t veeam-intelligence-mcp-server .

### 2. Install This Skill

clawhub install veeam-mcp

### Create Credentials File

Create ~/.veeam-mcp-creds.json:

{
  "vbr": {
    "url": "https://veeam-server.yourdomain.com:443/",
    "username": ".\\\\administrator",
    "password": "your_secure_password"
  },
  "vone": {
    "url": "https://veeam-one.yourdomain.com:1239/",
    "username": ".\\\\administrator",
    "password": "your_secure_password"
  }
}

Important: Lock down the credentials file:

chmod 600 ~/.veeam-mcp-creds.json

### Username Format

Local accounts: Use ".\\\\username" format
Domain accounts: Use "DOMAIN\\\\username" or "username@domain.com"
Escape backslashes: Single backslash in JSON: ".\\\\" not ".\\\\\\\\"

### Enable Veeam Intelligence

For live data queries (Advanced Mode), enable Veeam Intelligence on your Veeam servers:

Veeam Backup & Replication:

Open Veeam B&R console
Go to Options → Veeam Intelligence Settings
Enable the AI assistant

Veeam ONE:

Open Veeam ONE console
Find Veeam Intelligence settings
Enable the feature

Without this, queries will only return documentation (Basic Mode).

### Natural Language (OpenClaw)

Just ask naturally:

"What Veeam backup jobs failed yesterday?"
"Show me backup repository capacity"
"Check Veeam ONE alerts"
"Which VMs haven't been backed up this week?"

### Command Line Scripts

# Query VBR
./scripts/query-veeam.sh vbr "What backup jobs ran in the last 24 hours?"

# Query Veeam ONE
./scripts/query-veeam.sh vone "Show current alerts"

# Test connections
./scripts/test-connection.sh vbr
./scripts/test-connection.sh vone

# List available MCP tools
./scripts/list-tools.sh vbr

### How It Works

User Question → OpenClaw Skill → Docker MCP Server → Veeam API
                                        ↓
                               Veeam Intelligence
                                        ↓
                                 JSON Response

Docker Container: MCP server runs in isolated container
STDIO Transport: Communicates via standard input/output
Credential Injection: Env vars passed securely from credentials file
Natural Language: Veeam Intelligence processes queries with AI

### Connection Test Fails

# Check credentials file
cat ~/.veeam-mcp-creds.json | jq .

# Test Docker image
docker run -i --rm veeam-intelligence-mcp-server

# Manual connection test
echo '{"jsonrpc":"2.0","method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"test","version":"1.0.0"}},"id":1}' | \\
  docker run -i --rm \\
    -e PRODUCT_NAME=vbr \\
    -e WEB_URL=https://your-server:443/ \\
    -e ADMIN_USERNAME='.\\administrator' \\
    -e ADMIN_PASSWORD='yourpassword' \\
    -e ACCEPT_SELF_SIGNED_CERT=true \\
    veeam-intelligence-mcp-server

### Basic Mode (Documentation Only)

If responses say "Basic mode is active", enable Veeam Intelligence on your servers.

### Username Format Issues

Try .\\\\username (local account)
Try DOMAIN\\\\username (domain account)
Ensure single backslash in JSON

### Security Notes

Credentials stored locally in ~/.veeam-mcp-creds.json (chmod 600)
Docker container runs with non-root user
HTTPS connections with self-signed cert acceptance
No credentials exposed in logs or command history
MCP server communicates via stdin/stdout only

### References

Veeam Intelligence MCP Server: Contact Veeam for beta access
Model Context Protocol
Veeam Intelligence Documentation

### License

This skill is provided as-is. Veeam Intelligence MCP server is licensed separately.

Need Help? Open an issue on GitHub or ask in the OpenClaw Discord.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: JGM2025
- Version: 1.0.3
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-05-07T17:22:31.273Z
- Expires at: 2026-05-14T17:22:31.273Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/veeam-mcp)
- [Send to Agent page](https://openagent3.xyz/skills/veeam-mcp/agent)
- [JSON manifest](https://openagent3.xyz/skills/veeam-mcp/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/veeam-mcp/agent.md)
- [Download page](https://openagent3.xyz/downloads/veeam-mcp)