MCP Server
io.github.kcofoni/duplicati-mcp MCP Server
io.github.kcofoni/duplicati-mcp
What is the io.github.kcofoni/duplicati-mcp MCP server?
MCP server for Duplicati backup management — list, run, monitor and configure jobs from an LLM.
How to install io.github.kcofoni/duplicati-mcp
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
DUPLICATI_URLrequiredURL of the Duplicati instance (e.g. http://localhost:8200)
DUPLICATI_PASSWORDsecretDuplicati web interface password (leave empty if none configured)
DUPLICATI_READONLYSet to true to disable write operations (run, abort, update, import). Default: false
DUPLICATI_DB_PATHPath to Duplicati-server.sqlite — enables SQLite history tools (db_*). Leave empty to disable.
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"duplicati-mcp": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"docker.io/kcofoni/duplicati-mcp:v1.1.1"
],
"env": {
"DUPLICATI_URL": "<YOUR_DUPLICATI_URL>",
"DUPLICATI_PASSWORD": "<YOUR_DUPLICATI_PASSWORD>",
"DUPLICATI_READONLY": "<YOUR_DUPLICATI_READONLY>",
"DUPLICATI_DB_PATH": "<YOUR_DUPLICATI_DB_PATH>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"duplicati-mcp": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"docker.io/kcofoni/duplicati-mcp:v1.1.1"
],
"env": {
"DUPLICATI_URL": "<YOUR_DUPLICATI_URL>",
"DUPLICATI_PASSWORD": "<YOUR_DUPLICATI_PASSWORD>",
"DUPLICATI_READONLY": "<YOUR_DUPLICATI_READONLY>",
"DUPLICATI_DB_PATH": "<YOUR_DUPLICATI_DB_PATH>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"duplicati-mcp": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"docker.io/kcofoni/duplicati-mcp:v1.1.1"
],
"env": {
"DUPLICATI_URL": "<YOUR_DUPLICATI_URL>",
"DUPLICATI_PASSWORD": "<YOUR_DUPLICATI_PASSWORD>",
"DUPLICATI_READONLY": "<YOUR_DUPLICATI_READONLY>",
"DUPLICATI_DB_PATH": "<YOUR_DUPLICATI_DB_PATH>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"duplicati-mcp": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"docker.io/kcofoni/duplicati-mcp:v1.1.1"
],
"env": {
"DUPLICATI_URL": "<YOUR_DUPLICATI_URL>",
"DUPLICATI_PASSWORD": "<YOUR_DUPLICATI_PASSWORD>",
"DUPLICATI_READONLY": "<YOUR_DUPLICATI_READONLY>",
"DUPLICATI_DB_PATH": "<YOUR_DUPLICATI_DB_PATH>"
}
}
}
}Claude Code
claude mcp add duplicati-mcp --env DUPLICATI_URL=<YOUR_DUPLICATI_URL> --env DUPLICATI_PASSWORD=<YOUR_DUPLICATI_PASSWORD> --env DUPLICATI_READONLY=<YOUR_DUPLICATI_READONLY> --env DUPLICATI_DB_PATH=<YOUR_DUPLICATI_DB_PATH> -- docker run -i --rm docker.io/kcofoni/duplicati-mcp:v1.1.1Related MCP servers
MCP server for Gotify push notifications - send messages and manage apps/clients.
View repository →MCP server for searching and reading PmWiki pages with text queries and group filtering.
View repository →