oci ghcr.io/wyre-ai/unitrends-mcp:v1.1.4stdioApache-2.0updated 8d ago
A Model Context Protocol server exposing the Unitrends Backup API to Claude and other MCP clients.
What can you do with Unitrends Backup?
Unitrends Backup MCP Server
A Model Context Protocol server exposing the Unitrends Backup API to Claude and other MCP clients.
What it does
Surface backup posture from your Unitrends appliances (or MSP Console) directly to AI assistants — list appliances and protected assets, monitor running and historical backup jobs, browse recovery points, queue restores and replication, and review open alarms and RPO compliance.
- Interactive Appliance Card (MCP Apps):
unitrends_get_appliancerenders as an interactive card in MCP Apps hosts (Claude Desktop/web); neutral by default, brandable viawindow.__BRAND__injection orMCP_BRAND_*env vars; plain-JSON behavior is unchanged in other hosts
Tools
| Tool | Purpose |
|---|---|
unitrends_list_appliances |
List appliances under the MSP Console |
unitrends_get_appliance |
Get a single appliance's details (renders as an interactive card in MCP Apps hosts) |
unitrends_list_assets |
List protected assets (require applianceId — elicits if missing) |
unitrends_get_asset |
Fetch a single asset detail |
unitrends_list_running_jobs |
Currently running and queued backup jobs |
unitrends_list_job_history |
Historical jobs (date-range elicitation) |
unitrends_list_recovery_points |
Recovery points for an asset |
unitrends_queue_restore |
Queue a restore (DESTRUCTIVE — requires confirmation) |
unitrends_get_restore_status |
Check restore progress |
unitrends_list_alerts |
Open alarms |
unitrends_get_success_rate |
RPO compliance report (date-range elicitation) |
Credentials
Local (env mode)
export UNITRENDS_BASE_URL="https://unitrends.example.com"
export UNITRENDS_USERNAME="..."
export UNITRENDS_PASSWORD="..."
export UNITRENDS_VERIFY_TLS="true" # 'false' for self-signed appliances
Hosted (gateway mode)
The WYRE MCP Gateway injects credentials per request via headers:
X-Unitrends-Base-URL(required)X-Unitrends-Username(required)X-Unitrends-Password(required, secret)X-Unitrends-Verify-TLS(optional, defaulttrue)
Run
npm install
npm run build
npm start # stdio
MCP_TRANSPORT=http npm start # HTTP on :8080
License
Apache 2.0 — see LICENSE.
Install
Add Unitrends Backup to your client. Pick the one you use.
claude mcp add ghcr-io-wyre-ai-unitrends-mcp-v1-1-4 -- docker run -i --rm ghcr.io/wyre-ai/unitrends-mcp:v1.1.4codex mcp add ghcr-io-wyre-ai-unitrends-mcp-v1-1-4 -- docker run -i --rm ghcr.io/wyre-ai/unitrends-mcp:v1.1.4amp mcp add ghcr-io-wyre-ai-unitrends-mcp-v1-1-4 -- docker run -i --rm ghcr.io/wyre-ai/unitrends-mcp:v1.1.4{
"mcpServers": {
"ghcr-io-wyre-ai-unitrends-mcp-v1-1-4": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/wyre-ai/unitrends-mcp:v1.1.4"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"ghcr-io-wyre-ai-unitrends-mcp-v1-1-4": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/wyre-ai/unitrends-mcp:v1.1.4"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"ghcr-io-wyre-ai-unitrends-mcp-v1-1-4","command":"docker","args":["run","-i","--rm","ghcr.io/wyre-ai/unitrends-mcp:v1.1.4"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"ghcr-io-wyre-ai-unitrends-mcp-v1-1-4": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/wyre-ai/unitrends-mcp:v1.1.4"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"ghcr-io-wyre-ai-unitrends-mcp-v1-1-4": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/wyre-ai/unitrends-mcp:v1.1.4"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"ghcr-io-wyre-ai-unitrends-mcp-v1-1-4": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/wyre-ai/unitrends-mcp:v1.1.4"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"ghcr-io-wyre-ai-unitrends-mcp-v1-1-4": {
"type": "local",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/wyre-ai/unitrends-mcp:v1.1.4"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"ghcr-io-wyre-ai-unitrends-mcp-v1-1-4": {
"command": {
"path": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/wyre-ai/unitrends-mcp:v1.1.4"
]
}
}
}
}Add to your Zed `settings.json`.
docker run -i --rm ghcr.io/wyre-ai/unitrends-mcp:v1.1.4Run `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
11 tools
Unitrends Backup exposes 11 tools to a connected agent.
- unitrends_list_appliances
- List appliances under the MSP Console
- unitrends_get_appliance
- Get a single appliance's details (renders as an interactive card in MCP Apps hosts)
- unitrends_list_assets
- List protected assets (require applianceId — elicits if missing)
- unitrends_get_asset
- Fetch a single asset detail
- unitrends_list_running_jobs
- Currently running and queued backup jobs
- unitrends_list_job_history
- Historical jobs (date-range elicitation)
- unitrends_list_recovery_points
- Recovery points for an asset
- unitrends_queue_restore
- Queue a restore (DESTRUCTIVE — requires confirmation)
- unitrends_get_restore_status
- Check restore progress
- unitrends_list_alerts
- Open alarms
- unitrends_get_success_rate
- RPO compliance report (date-range elicitation)
Score
73 / 100
Good
- Documentation18/25
- Maintenance19/25
- Trust16/20
- Capability8/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 1 days ago
- Has a release history
- Repository is not archived
- Licensed Apache-2.0
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 11 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 1.1.4Latest | Aug 26, 2026 |