pbs-mcp
Provides tools for interacting with a Proxmox Backup Server, including datastore status, snapshot inventory, garbage collection, verification, and pruning operations via the PBS REST API.
Click on "Install 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., "@pbs-mcpshow me the status of all datastores"
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.
pbs-mcp
MCP server for Proxmox Backup Server. Exposes datastore status, snapshot inventory, garbage collection, verify, and prune over the PBS REST API as 17 LLM-callable tools. Designed for the Model Context Protocol.
Türkçe için → README.tr.md
Why
PBS already has a polished web UI. This server is for the cases where the UI isn't where you are — answering "is anything broken?" from a chat assistant, or wiring PBS state into a homelab agent that schedules verifies and prunes based on real conditions.
Related MCP server: duplicati-mcp
Tools (17)
# | Tool | Mode | Notes |
1 |
| read | One-call health report: storage, GC, verify coverage, freshness, failed tasks |
2 |
| read | Configured datastores + schedules |
3 |
| read | total / used / available bytes |
4 |
| read | Per-group snapshot count, owner, corruption flag |
5 |
| read | Newest-first with |
6 |
| read | UPID → running / OK / error |
7 |
| read | Paginate a task log, or |
8 |
| read | Recent tasks; full UPIDs handed out for running/failed ones |
9 |
| read | Last GC stats: bytes referenced, pending, removed |
10 |
| read | Scheduled verify jobs + re-verify policy |
11 |
| read | Preview which snapshots a retention policy would drop |
12 |
| write | Trigger GC, returns UPID (async) |
13 |
| write | Trigger verify, optional snapshot scope |
14 |
| write | Apply retention policy |
15 |
| write | Set/clear the protected flag (prune/forget skip protected) |
16 |
| write | Delete one snapshot (corrupt cleanup) |
17 |
| write | Abort a running task (e.g. GC stuck on slow NFS) |
Start with pbs_health_overview for any "is PBS okay?" question — it fetches
datastore status, GC stats, groups, snapshots, node status, and recent tasks
concurrently and condenses them into one verdict, replacing five separate
tool calls.
Write tools require both PBS_ALLOW_WRITE=true in the environment and
confirm=true in the call itself. Restore is intentionally out of scope —
the standard proxmox-mcp already handles restore from PBS via archive=
on the Proxmox VE side.
Setup
1. Create an API token in PBS
In a shell on the PBS host (pct enter 205 from Proxmox if PBS lives in
an LXC, otherwise just SSH):
# Generate a token under root@pam
proxmox-backup-manager user generate-token root@pam mcp
# Grant it admin on your datastore
proxmox-backup-manager acl update /datastore/<your-datastore> \
DatastoreAdmin --auth-id 'root@pam!mcp'The generate-token output includes a value field — that's the secret,
shown only once. Save it.
Why DatastoreAdmin? PBS performs an owner check on prune. Either you give the token DatastoreAdmin (this), or you keep moving backup ownership with
change-ownerafter every push. Admin scope is simpler and stays inside one datastore.
2. Configure the MCP server
git clone https://github.com/ahmetem/pbs-mcp.git
cd pbs-mcp
cp .env.example .env
# Edit .env: fill in PBS_HOST, PBS_TOKEN_ID, PBS_TOKEN_SECRET
pip install -e .3. Register with your MCP client
For Claude Desktop, add to claude_desktop_config.json:
{
"mcpServers": {
"pbs": {
"command": "python",
"args": ["/absolute/path/to/pbs-mcp/pbs_mcp.py"]
}
}
}Restart the client. The pbs_* tools should appear.
Safety model
Read-only by default. Out of the box
PBS_ALLOW_WRITE=false, so every state-changing tool refuses regardless ofconfirm.Two-key requirement on writes.
PBS_ALLOW_WRITE=trueopens the door; each call still needsconfirm=true. Two independent toggles, two intentional actions.Async tasks return UPIDs, not results.
run_gcandrun_verifykick off work and hand back a UPID immediately. Poll withget_task_status. This prevents the MCP request from blocking for hours.Token scoped to one datastore. ACLs live at
/datastore/<name>, not at/. A leaked token can't read PBS user lists or remote sync configs.
Notes / gotchas
First-call cache lag: PBS caches ACLs for a few seconds. GET requests retry once automatically after a short delay on 403 / connect errors, so a freshly granted token usually just works. If it still fails, wait a few seconds and retry.
Token vs user permissions: PBS API tokens get the intersection of the parent user's ACLs and the token's ACLs. With
root@pam!mcpthe parent is unrestricted, so only the token's ACL matters in practice.Self-signed cert: PBS ships with a self-signed cert. The default
PBS_VERIFY_TLS=falseis fine for a LAN setup. For real CAs, setPBS_VERIFY_TLS=trueandPBS_CA_BUNDLEto a PEM file.UPIDs are tied to their creator: a UPID created by a now-deleted user becomes unreadable. Don't recycle PBS users while there are pending tasks.
Development
pip install -e .[dev]
pytestTests stub the HTTP layer — no PBS instance needed.
License
GPL-3.0-or-later. See LICENSE.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityCmaintenanceMCP server for managing Proxmox VE clusters — provision VMs and containers, manage snapshots and backups, execute commands, browse storage, and monitor resources through natural languageLast updated2512MIT
- AlicenseAqualityBmaintenanceMCP server for managing Duplicati backups from an LLM.Last updated17MIT
- Flicense-qualityCmaintenanceMCP server for Proxmox VE that enables AI assistants to inspect and manage LXC containers, VMs, snapshots, and resource pools via the Proxmox API.Last updated
- AlicenseAqualityCmaintenanceEnables LLM agents to monitor and manage a Proxmox VE cluster, including cluster status, VM/container lifecycle, and node actions via MCP tools.Last updated8MIT
Related MCP Connectors
MCP server exposing the Backtest360 engine API as tools for AI agents.
MCP server for Pentest-Tools.com: run scans, manage findings and reports via your preffered LLM.
Personal assistant MCP server with search, execute, packages, jobs, secrets, and integrations.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ahmetem/homelab-pbs-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server