Skip to content
VS Code

KVM/libvirt VMs and backups (Fedora) for VS Code

io.github.amineutron/fedora-agents

Manage local KVM/libvirt VMs and Timeshift/Borg backups on Fedora: start, stop, clone, snapshot.

client:VS Code transport:stdio runtime:npm

Install KVM/libvirt VMs and backups (Fedora) in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "mcp-agents-log-dir",
      "description": "MCP_AGENTS_LOG_DIR",
      "password": true
    }
  ],
  "servers": {
    "fedora-agents": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "fedora-agents-mcp"
      ],
      "env": {
        "MCP_AGENTS_LOG_DIR": "${input:mcp-agents-log-dir}"
      }
    }
  }
}

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

KVM/libvirt VMs and backups (Fedora) in other clients