zerobyte-mcp
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@zerobyte-mcplist all repositories"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Zerobyte MCP
An MCP server that exposes the Zerobyte backup platform's REST API as tools for AI assistants. Built with FastMCP and served over streamable HTTP.
Available Tools
Resources
Tool | Description |
| List all repositories, volumes, or backups configured in Zerobyte |
| Get detailed information for a specific resource |
Repositories
Tool | Description |
| Get storage statistics for a repository |
| Trigger a refresh of repository storage statistics |
| List snapshots in a repository, optionally filtered by backup |
| Start a repository check/repair operation |
Backups
Tool | Description |
| Get the progress of a backup job |
| Get mirror destinations and compatibility for a backup |
| Get notification channels assigned to a backup |
Snapshots
Tool | Description |
| Browse files and directories within a snapshot |
Volumes
Tool | Description |
| Browse files and directories on a volume |
| Run a health check on a volume |
System
Tool | Description |
| Get Zerobyte system runtime and capabilities |
| List all configured notification channels |
| Browse the filesystem of the Zerobyte host |
Health
A GET /health endpoint returns {"status": "ok"} when the upstream Zerobyte API is reachable, or {"status": "unhealthy"} (HTTP 503) when it is not.
Related MCP server: zerobyte-mcp
Scope
Only non-destructive operations are implemented — read-only queries, statistics refresh triggers, health checks, and repository doctor checks. No write, delete, modify, or configuration-change operations are exposed. Sensitive config keys are stripped from all API responses.
Configuration
Environment variables loaded by the server:
Variable | Required | Description |
| Yes | Base URL of the Zerobyte installation |
| Yes | Zerobyte API key |
Running
Direct from source
export ZEROBYTE_URL=http://<your-local-ip>:<port>
export ZEROBYTE_API_TOKEN=<your-api-token>
uv sync
uv run python src/zerobyte_mcp/server.pyThe server starts on 0.0.0.0:8000 with the streamable HTTP transport.
Docker Compose
services:
zerobyte-mcp:
image: ghcr.io/pgoellnitz/zerobyte-mcp:latest
ports:
- 8000:8000
restart: unless-stopped
environment:
- ZEROBYTE_URL=http://<your-local-ip>:<port>
- ZEROBYTE_API_TOKEN=<your-api-token>
healthcheck:
test: ["CMD", "python", "-c", "import urllib.request; urllib.request.urlopen('http://localhost:8000/health')"]
interval: 30s
timeout: 5s
retries: 3
start_period: 10sMCP Client Setup
Add to your LibreChat librechat.yaml:
mcpServers:
zerobyte:
type: streamable-http
url: http://localhost:8000/mcpDisclaimer: This project is provided as-is for educational purposes only. It should not be used on productive Zerobyte instances. No warranty or support is provided.
This server cannot be deployed
Maintenance
Related MCP Connectors
Read-only MCP access to a documented IT fleet: state, changes, posture. 15 tools.
XFA's remote MCP server — query device posture, compliance, policies & CVEs. Read-only.
Unified gateway exposing 150+ tools across all NexGenData MCP servers via one endpoint.
Governed MCP gateway: one endpoint for your tools, with credential custody and audit log.
Related MCP Servers
- AlicenseAqualityDmaintenanceMCP server for Proxmox Backup Server. Exposes datastore status, snapshot inventory, garbage collection, verify, and prune over the PBS REST API as 13 LLM-callable tools.171GPL 3.0
- FlicenseNot gradedqualityDmaintenanceEnables managing Zerobyte backups via MCP, including listing repositories, snapshots, schedules, and restoring backups.-
- AlicenseBqualityCmaintenanceExposes N-able N-central REST API as MCP tools for managing devices, organizations, users, and more, with support for read-only, write, and full write modes.825MIT
- FlicenseNot gradedqualityCmaintenanceProvides MCP tools to interact with the Backup Radar v2 Backups API, enabling queries on backups, scheduled backups, inactive backups, and backup results.-