CyberHawk Veeam MCP

CyberHawk Veeam MCP

Enables Claude to read and control Veeam Backup & Replication infrastructure through natural language, supporting full operator capabilities like starting/stopping jobs, creating backups, and monitoring threat detection via the VBR REST API.

Category
Visit Server

README

CyberHawk Threat Intel

<p align="center"> <img src="https://media.cyberhawkthreatintel.com/general/1771234479938-y9566.png" alt="CyberHawk Threat Intel" width="160"/> </p>

<h1 align="center">CyberHawk Veeam MCP</h1> <p align="center"> <strong>By <a href="https://www.cyberhawkthreatintel.com">CyberHawk Threat Intel</a></strong> · Rudra Verma | Senior Cyber Security Architect & Researcher </p>

<p align="center"> <em>A full-operator Model Context Protocol (MCP) server for Veeam Backup & Replication — let Claude read AND control your backup infrastructure through natural language.</em> </p>

<p align="center"> <img src="https://img.shields.io/badge/Veeam-VBR%2012.x-0066cc?style=flat-square" alt="Veeam VBR 12.x"/> <img src="https://img.shields.io/badge/protocol-MCP-5a3fd6?style=flat-square" alt="MCP"/> <img src="https://img.shields.io/badge/runtime-Node.js%2020%2B-339933?style=flat-square" alt="Node.js 20+"/> <img src="https://img.shields.io/badge/language-TypeScript-3178c6?style=flat-square" alt="TypeScript"/> <img src="https://img.shields.io/badge/by-CyberHawk%20Threat%20Intel-0066cc?style=flat-square" alt="by CyberHawk Threat Intel"/> <img src="https://img.shields.io/badge/license-Apache%202.0-blue?style=flat-square" alt="Apache 2.0"/> </p>


What this is

CyberHawk Veeam MCP turns Claude (Code, Desktop, or any MCP-compatible client) into a hands-on operator for Veeam Backup & Replication. Instead of only asking about your backups, you can drive them:

"Start the nightly ESXi backup job." "Why did the SQL replica job fail last night — and fix it." "Which repository is almost full?" "Show me any malware detection events from the last week." "Create a new backup job for the three web VMs, daily at 2am, to the main repository."

It speaks the VBR Public REST API v1 directly — the same documented API the Veeam console uses — so it supports full read + write across jobs, sessions, backups, restores, infrastructure, and threat detection.

How this differs from the official Veeam MCP

The official veeam-ai/veeam-mcp-server is a read-only proxy to Veeam's cloud "Veeam Intelligence" chatbot — it exposes a single question-answering tool and requires Advanced mode + a non-Community license. CyberHawk Veeam MCP is a different design: it talks straight to your VBR's on-box REST API, needs no cloud service, and exposes granular operator tools with real write capability.

Official Veeam MCP CyberHawk Veeam MCP
Backend Veeam Intelligence cloud chatbot VBR on-box REST API v1
Capability Read-only Q&A Full read + write operator
Tools 1 (question answering) 30+ granular tools
License requirement Non-Community + Advanced mode Enterprise Plus (REST API gate)
Cloud dependency Yes No — stays on your network

⚠️ Authorized use only. This server can start, stop, create, and delete jobs and launch restores against production backup infrastructure. Run it only against Veeam instances you own or are authorized to operate. Ships with a VEEAM_READONLY safety switch.


Capabilities (30+ tools)

Category Tools
Discovery veeam_server_info, veeam_api_request (raw escape-hatch to any endpoint)
Jobs — read list_jobs, get_job, list_job_states, get_job_objects
Jobs — control start_job, stop_job, retry_job, enable_job, disable_job
Jobs — config create_job, update_job, delete_job
Sessions & diagnosis list_sessions, get_session, get_session_logs, stop_session, diagnose_job
Backups & restore points list_backups, get_backup_objects, list_restore_points, get_restore_point
Restore list_restore_sessions, start_instant_recovery_vmware, stop_restore_session
Infrastructure list_repositories, get_repository_states, list_proxies, list_managed_servers, list_credentials, browse_inventory
Security (VBR 12.1+) list_malware_events, get_malware_settings

Not limited to hardcoded endpoints. The veeam_api_request tool can reach any VBR REST endpoint (failover plans, SureBackup, tape, agents, cloud/SaaS) — so new-version features work without waiting for a code update.

Cross-version by design. The required x-api-version header is auto-detected: the server tries your configured value, then falls back through every known VBR rev until authentication succeeds — so the same build runs against VBR 12.0, 12.1, 12.2, 12.3, and forward.


Requirements

  • Node.js 20+ (or Docker) on the machine that runs the MCP server
  • Veeam Backup & Replication 12.0 or newer with the RESTful API service running (default TCP port 9419)
  • An Enterprise Plus license (or an Enterprise Plus trial / NFR key) on the VBR server — see the license note below
  • A Veeam account (Windows local/domain account) that can log into the VBR console
  • An MCP client: Claude Code, Claude Desktop, VS Code, etc.

⚠️ License requirement — the Veeam REST API needs Enterprise Plus. This is a Veeam licensing gate, not a limitation of this project. On Community Edition (or when no valid license is installed), the RESTful API service loads but stays in standby mode and never binds port 9419 — so nothing will answer. Veeam offers free 30-day Enterprise Plus trials and NFR keys that enable it. Verify your API is live by confirming https://<vbr-host>:9419/swagger loads.

Quick check that the listener is up (PowerShell): Test-NetConnection localhost -Port 9419. If it reports TcpTestSucceeded : False, check your license edition in Console → Help → License Information — it must be Enterprise Plus.


Installation

Option A — One line, no clone (recommended)

The install command is npx -y github:rudraverma/veeam-mcp — but you don't run it yourself in a terminal. With MCP, your client (Claude Desktop / Code) runs it for you every time it starts. You just tell the client to use that command by adding the block below to its config — the "command" and "args" lines are the npx command:

npx -y github:rudraverma/veeam-mcp
        └── expressed as →  "command": "npx", "args": ["-y", "github:rudraverma/veeam-mcp"]

Fastest (Claude Code) — one command that does everything

If you use Claude Code, skip editing any files — run one command and it registers the server for you:

claude mcp add veeam -s user \
  -e VEEAM_HOST=localhost \
  -e VEEAM_USERNAME=svc-claude \
  -e VEEAM_ACCEPT_SELF_SIGNED=true \
  -e VEEAM_READONLY=true \
  -- npx -y github:rudraverma/veeam-mcp

That's it. Add your Veeam password as one more -e flag (same -e VEEAM_...=value form as the others), then restart Claude Code. Flip VEEAM_READONLY to false once your first read-only connection checks out. Manage it later with claude mcp list and claude mcp remove veeam.

-s user installs it for your whole user account (every project). Drop it for a project-only install, or use -s project to share it with a repo via .mcp.json.

Any other MCP client — edit the config file

Step 1. Open your MCP client config file:

  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

Step 2. Add this block (fill in your Veeam details) and save:

{
  "mcpServers": {
    "veeam": {
      "command": "npx",
      "args": ["-y", "github:rudraverma/veeam-mcp"],
      "env": {
        "VEEAM_HOST": "localhost",
        "VEEAM_PORT": "9419",
        "VEEAM_USERNAME": "DOMAIN\\svc-claude",
        "VEEAM_PASSWORD": "<your-password>",
        "VEEAM_ACCEPT_SELF_SIGNED": "true",
        "VEEAM_READONLY": "false"
      }
    }
  }
}

Step 3. Restart your MCP client. That's it — no clone, no build, no other steps.

Prefer to run the command yourself first? (Optional sanity check.) Set your VEEAM_* variables in the shell environment (or copy .env.example to .env and fill it in), then run the command below. It prints a connected to … line and then waits for the client — press Ctrl+C to exit:

npx -y github:rudraverma/veeam-mcp

Notes:

  • Requires: git and Node.js 20+ on your PATH (that's all npx needs).
  • First launch takes ~30–60s while npx installs and builds; every launch after that is instant from cache.
  • Point VEEAM_HOST at a remote VBR IP/hostname if the MCP isn't running on the backup server itself.
  • Start safe: set VEEAM_READONLY to "true" for your first connection to confirm everything reads correctly, then flip to "false" for full control.

Recommended: use a dedicated Veeam service account (e.g. svc-claude, non-MFA — Veeam's REST API and MFA don't mix) with a role assigned under Users and Roles in the console, rather than a personal admin login.

Option B — From source (offline / air-gapped / development)

Clone and build once, then launch the built file directly.

Windows (PowerShell):

git clone https://github.com/rudraverma/veeam-mcp.git
cd veeam-mcp
npm install        # runs the build automatically (prepare script)

macOS / Linux:

git clone https://github.com/rudraverma/veeam-mcp.git
cd veeam-mcp
npm install        # runs the build automatically (prepare script)

Then point your client at the built file (adjust the path):

{
  "mcpServers": {
    "veeam": {
      "command": "node",
      "args": ["/path/to/veeam-mcp/build/index.js"],
      "env": {
        "VEEAM_HOST": "localhost",
        "VEEAM_PORT": "9419",
        "VEEAM_USERNAME": "svc-claude",
        "VEEAM_PASSWORD": "your-password",
        "VEEAM_ACCEPT_SELF_SIGNED": "true",
        "VEEAM_READONLY": "false"
      }
    }
  }
}

Optional smoke test before wiring it into a client — copy .env.example to .env, fill it in, then:

npm start            # prints "connected to https://<host>:9419 …" on stderr
npm run inspector    # or click through the tools in the MCP Inspector

Option C — Docker

git clone https://github.com/rudraverma/veeam-mcp.git && cd veeam-mcp
docker build -t veeam-mcp .
{
  "mcpServers": {
    "veeam": {
      "command": "docker",
      "args": ["run", "--rm", "-i", "--env-file", "/path/to/.env", "veeam-mcp"]
    }
  }
}

Restart your MCP client after editing the config.


Configuration reference

Variable Default Description
VEEAM_HOST localhost VBR host or IP
VEEAM_PORT 9419 VBR REST API port
VEEAM_BASE_URL (unset) Full base URL override (wins over host/port)
VEEAM_USERNAME (required) Windows account that can log into VBR
VEEAM_PASSWORD (required) Password for that account
VEEAM_API_VERSION 1.1-rev1 Starting x-api-version guess (auto-detected)
VEEAM_ACCEPT_SELF_SIGNED true Accept VBR's self-signed TLS certificate
VEEAM_READONLY false true blocks all state-changing tools
VEEAM_TIMEOUT_MS 60000 HTTP request timeout

API version map (only needed if auto-detection is disabled by network policy):

VBR build x-api-version
12.0 1.1-rev0
12.1 1.1-rev1
12.1.1 / 12.1.2 1.1-rev2
12.2 1.2-rev0
12.3 1.2-rev1

Usage examples

Once connected, talk to your MCP client naturally:

  1. Health check"Show me the state of all Veeam jobs — anything failed or warning?"list_job_states
  2. Start a job"Run the 'ESXi-Nightly' backup job now."list_jobsstart_job
  3. Diagnose a failure"Why did the 'SQL-Replica' job fail last night?"diagnose_job (finds the latest session, reads the failed log records, explains the cause)
  4. Fix and retry"That failed because the repository was full — free space check, then retry the job."get_repository_statesretry_job
  5. Capacity review"Which repositories are over 80% used?"get_repository_states
  6. Create a job"Create a daily backup job for VMs web01, web02, web03 to the Main repository at 2am."list_managed_serversbrowse_inventorylist_repositoriescreate_job
  7. Restore point lookup"List the latest restore points for the DC01 VM."list_restore_points
  8. Instant recovery"Instant-recover DC01 from last night's restore point to the ESXi lab host."list_restore_pointsstart_instant_recovery_vmware
  9. Threat hunt"Any Veeam malware detection events this week? Summarize them for an IR ticket."list_malware_events
  10. Advanced / any endpoint"Show me all failover plans."veeam_api_request GET /api/v1/failoverPlans

Safety model

Backup infrastructure is critical, so the server is deliberate about writes:

  • VEEAM_READONLY=true turns the server into a pure observability tool — every start/stop/create/delete/restore tool refuses to run and returns a clear message. Great for a first deployment or for read-only analysts.
  • Every mutating tool is explicitly labelled (e.g. "destructive", "impactful") in its description so the model asks for confirmation on risky actions.
  • No bulk destructive operations — deletes require a specific job ID; there is no wildcard delete.
  • Credentials never leave your network — auth goes straight to your VBR host; there is no cloud dependency and secrets are read only from environment variables.

Project structure

veeam-mcp/
├── src/
│   ├── index.ts                 # MCP server entry point
│   ├── config.ts                # env config + validation + API-version candidates
│   ├── veeam/
│   │   └── VbrClient.ts          # OAuth2 auth, token refresh, version auto-detect, request layer
│   ├── util/
│   │   └── result.ts             # MCP tool result helpers
│   └── tools/
│       ├── index.ts              # registers all tool groups
│       ├── server.ts             # server_info + raw api_request
│       ├── jobs.ts               # list/get/control/create/update/delete jobs
│       ├── sessions.ts           # sessions + diagnose_job
│       ├── backups.ts            # backups + restore points
│       ├── restore.ts            # restore operations
│       ├── infrastructure.ts     # repositories, proxies, servers, credentials, inventory
│       └── security.ts           # malware detection (VBR 12.1+)
├── .env.example                  # configuration template (copy to .env)
├── Dockerfile                    # container build
├── esbuild.config.js             # bundler
├── package.json
├── tsconfig.json
├── LICENSE                       # Apache 2.0
└── README.md

Troubleshooting

Symptom Fix
Cannot reach VBR at … (ECONNREFUSED) Check VEEAM_HOST/VEEAM_PORT; confirm the Veeam RESTful API service is running (TCP 9419).
TLS error … self-signed Set VEEAM_ACCEPT_SELF_SIGNED=true (default).
Authentication failed (401) Verify VEEAM_USERNAME / VEEAM_PASSWORD; the account must be able to log into the VBR console. Note: MFA on the account can break REST auth (known Veeam issue) — use a dedicated non-MFA service account.
Every write returns "read-only mode" You have VEEAM_READONLY=true; set it to false.
malwareDetection returns an error That feature requires VBR 12.1+; older builds don't expose it.
A specific action isn't a dedicated tool Use veeam_api_request with the endpoint from https://<host>:9419/swagger.

Related work


Connect with CyberHawk Threat Intel

<p align="center"> <a href="https://www.cyberhawkthreatintel.com"> <img src="https://media.cyberhawkthreatintel.com/general/1771234479938-y9566.png" alt="CyberHawk Threat Intel" width="120"/> </a> </p>

<p align="center"> <strong>🦅 Sign up FREE → <a href="https://www.cyberhawkthreatintel.com">cyberhawkthreatintel.com</a></strong> </p>

<p align="center"> <a href="https://youtube.com/@cyberhawkconsultancy">YouTube @cyberhawkconsultancy</a> · <a href="https://youtube.com/@cyberhawkk">YouTube @cyberhawkk</a> · <a href="https://tiktok.com/@cyberhawkthreatintel">TikTok</a> · <a href="https://x.com/cyberhawkintel">X @cyberhawkintel</a> · <a href="https://t.me/cyberhawkthreatintel">Telegram</a> </p>

<p align="center"> <em>Rudra Verma | Senior Cyber Security Architect & Researcher | CyberHawk Threat Intel</em><br/> <em>Authorized security research & penetration testing only. Unauthorized use is illegal.</em> </p>

<p align="center"> #cyberhawkthreatintel  #cyberhawkconsultancy  #cyberhawkk  #cybersecurity  #ethicalhacking  #pentesting  #redteam  #threatintel  #infosec </p>

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured