MCP server for Duplicati backup management
Project description
Duplicati MCP Server
MCP (Model Context Protocol) server for managing Duplicati backups from an LLM.
Version française / French version
Architecture
The server wraps the Duplicati REST API and exposes it via the MCP protocol. Two transports are supported:
- stdio — for local use via Claude Code (no network, no port)
- Streamable HTTP — for Docker deployment, accessible over the network
Getting Started
Local use with Claude Code (stdio)
The simplest way to get started. The .mcp.json at the project root handles everything:
# Install uv if needed
brew install uv
# Claude Code will auto-detect .mcp.json and launch the server
Set your Duplicati URL and password in .mcp.json:
{
"mcpServers": {
"duplicati": {
"type": "stdio",
"command": "uv",
"args": ["run", "duplicati-mcp"],
"env": {
"DUPLICATI_URL": "http://localhost:8200",
"DUPLICATI_PASSWORD": "your-password",
"DUPLICATI_READONLY": ""
}
}
}
}
With Docker Compose (Docker Hub image)
# Edit DUPLICATI_URL and DUPLICATI_PASSWORD in docker-compose.yml, then:
docker compose up -d
With Docker Compose (local build)
# Edit docker-compose.yml: comment out `image:` and uncomment `build: .`
docker compose up -d --build
Direct Docker usage
docker run -d \
--name duplicati-mcp-server \
-p 3000:3000 \
-e DUPLICATI_URL=http://your-duplicati-host:8200 \
-e DUPLICATI_PASSWORD=your-password \
kcofoni/duplicati-mcp:latest
Verification
# Check that the server is running
docker logs duplicati-mcp-server
# Test the MCP endpoint
curl -X POST http://localhost:3000/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2025-03-26","capabilities":{},"clientInfo":{"name":"test","version":"1.0"}}}'
Client Configuration
Claude Code — local (stdio)
For local use without Docker, add to your project .mcp.json:
{
"mcpServers": {
"duplicati": {
"type": "stdio",
"command": "uv",
"args": ["run", "duplicati-mcp"],
"env": {
"DUPLICATI_URL": "http://localhost:8200",
"DUPLICATI_READONLY": ""
}
}
}
}
Credentials are loaded from the .env file at the project root (see Getting Started).
Claude Code — Docker/remote (HTTP)
Add to your .mcp.json:
{
"mcpServers": {
"duplicati": {
"type": "http",
"url": "http://your-host:3000/mcp"
}
}
}
Claude Desktop
Claude Desktop requires mcp-proxy as a bridge to HTTP servers. Add to your configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"duplicati": {
"command": "uvx",
"args": ["mcp-proxy", "--transport", "streamablehttp", "http://your-host:3000/mcp"]
}
}
}
Available Tools
Once connected, the LLM has access to:
Backup Jobs
- list_backups — List all configured jobs with ID, name, last run date and result
- get_backup — Get detailed information about a specific job
- run_backup — Trigger a backup job immediately
- abort_backup — Abort the currently running backup for a job
Status & Progress
- get_progress — Live progress of the active backup task (phase, %, file counts)
- get_server_status — Duplicati server state, version and active task
Configuration
- export_backup_config — Export a job configuration as JSON
- import_backup_config — Import a job configuration from JSON
Environment Variables
| Variable | Default | Description |
|---|---|---|
DUPLICATI_URL |
http://localhost:8200 |
URL of the Duplicati instance |
DUPLICATI_PASSWORD |
(empty) | Duplicati web interface password (leave empty if none set) |
DUPLICATI_READONLY |
(empty) | Set to true, 1 or yes to disable write operations |
MCP_TRANSPORT |
stdio |
Transport: stdio or streamable-http |
MCP_PORT |
3000 |
Port for Streamable HTTP transport |
Read-only Mode
DUPLICATI_READONLY=true disables run_backup, abort_backup and import_backup_config. All read tools remain active. Useful for safely exploring and analysing backup configurations without any risk of modification.
Docker Hub
- Repository: kcofoni/duplicati-mcp
- Latest tag:
kcofoni/duplicati-mcp:latest
docker pull kcofoni/duplicati-mcp:latest
Development
File Structure
duplicati-mcp/
├── src/
│ └── duplicati_mcp/
│ ├── __init__.py
│ ├── __main__.py
│ ├── client.py # Duplicati REST API client
│ └── server.py # FastMCP server and tools
├── mcp-publication/ # MCP registry publication files
├── requirements.txt # Python dependencies
├── pyproject.toml # Project metadata
├── Dockerfile
├── docker-compose.yml
├── .mcp.json # Claude Code local config (stdio)
├── test_server.sh # Docker container smoke test
├── test_mcp.py # MCP protocol test
├── README.md # This file (English)
└── README_fr.md # French documentation
Running Tests
# Smoke test (requires running Docker container)
./test_server.sh
# MCP protocol test (requires running server)
python test_mcp.py
python test_mcp.py localhost:3000
Interactive Tool Testing (local)
uv run mcp dev src/duplicati_mcp/server.py
Troubleshooting
Cannot connect to Duplicati
Check that DUPLICATI_URL is reachable from the container. If both run in Docker, put them on the same network and use the service name as hostname.
Authentication failed
Verify DUPLICATI_PASSWORD matches the password set in Duplicati's web interface. Leave empty if no password is configured.
MCP endpoint not responding
docker ps | grep duplicati-mcp-server
docker logs duplicati-mcp-server
License
This project is licensed under the MIT License — see the LICENSE file for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file duplicati_mcp-1.0.0.tar.gz.
File metadata
- Download URL: duplicati_mcp-1.0.0.tar.gz
- Upload date:
- Size: 57.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.13 {"installer":{"name":"uv","version":"0.9.13"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
20f40cc4569940693ccae00e8612b39d0f5da4ff105ab159352708d37e6248c9
|
|
| MD5 |
901b6189edbc4b8563be66f51e5d18e9
|
|
| BLAKE2b-256 |
5fa9fb479b80099ad3941d0bfa2160840c3cff8d9bc56055ef4cfe3ca4753e17
|
File details
Details for the file duplicati_mcp-1.0.0-py3-none-any.whl.
File metadata
- Download URL: duplicati_mcp-1.0.0-py3-none-any.whl
- Upload date:
- Size: 8.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.13 {"installer":{"name":"uv","version":"0.9.13"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fe65ed175cda7ef3337881e2ad17c4e446bb6bf0ca2c279059be51aca0b55c9d
|
|
| MD5 |
d1861eb8d807939e79d1ebebc313513a
|
|
| BLAKE2b-256 |
aefae8dc71060db4886bebe13c87971a76732e73656963f79cc2ae4af07906a0
|