Skip to content
VS Code

duplicacy mcp for VS Code

io.github.geiserx/duplicacy-mcp

MCP server for Duplicacy — monitor backup status and Prometheus metrics

client:VS Code transport:stdio runtime:npm

Install duplicacy mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "duplicacy-exporter-url",
      "description": "DUPLICACY_EXPORTER_URL",
      "password": true
    }
  ],
  "servers": {
    "duplicacy-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "duplicacy-mcp"
      ],
      "env": {
        "DUPLICACY_EXPORTER_URL": "${input:duplicacy-exporter-url}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

duplicacy mcp in other clients