# KVM/libvirt VMs and backups (Fedora) (npm · fedora-agents-mcp)

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

- Trust score: 61/100 (medium)
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-09-24

## Components

- npm · `fedora-agents-mcp`: 61/100 (this document), [markdown](https://verifymcp.io/servers/amineutron-fedora-agents/fedora-agents-mcp.md), [page](https://verifymcp.io/servers/amineutron-fedora-agents/fedora-agents-mcp)

## Channel facts

- Registry: `npm`
- Package: `fedora-agents-mcp`
- Version: `1.2.2`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-09-24.

- **Supply Chain Security**: 48/100
  - Malware scan not yet available for this package.
  - No known CVEs affecting this package version or its production dependencies.
  - No install/post-install scripts declared.
  - 36 of 109 dependencies flagged as unhealthy.
- **Provenance & Transparency**: 100/100
  - Source repository is publicly reachable at the declared URL.
  - Cryptographically verified build provenance (signed, bound to amineutron/fedora-agents).
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 0 days ago).
  - Publishes a security disclosure policy (SECURITY.md).
- **Schema Quality & AI Usability**: 64/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 1539 tokens (~81/item across 19 items; 19 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 0/100
  - Stability not yet verified: not enough scan history yet (needs a 30-day window).
- **Tool Coverage**: 67/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 0% of tool parameters carry a description.
- **Tool Safety**: 100/100
  - No prompt-injection markers were found in the server instructions, tool names or descriptions we captured.
  - All 2 tool(s) whose name or description implies an irreversible operation declare an MCP destructiveHint annotation.
  - An AI judge read all 19 captured unit(s) of tool text and found none that tries to manipulate the model reading it.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

**Unverified: 1 category.** A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

## Install

### How do I install the KVM/libvirt VMs and backups (Fedora) MCP server?

KVM/libvirt VMs and backups (Fedora) runs locally as an npm package, launched with npx -y fedora-agents-mcp. Ready-made configuration for Claude, Cursor, VS Code, Codex and 5 more is on this page, copied from each client's own documentation.

### Claude

```bash
claude mcp add amineutron-fedora-agents -- npx -y fedora-agents-mcp
```

### Cursor

```json
{
  "mcpServers": {
    "amineutron-fedora-agents": {
      "command": "npx",
      "args": [
        "-y",
        "fedora-agents-mcp"
      ]
    }
  }
}
```

### VS Code

```json
{
  "servers": {
    "amineutron-fedora-agents": {
      "command": "npx",
      "args": [
        "-y",
        "fedora-agents-mcp"
      ]
    }
  }
}
```

### Codex

```bash
codex mcp add amineutron-fedora-agents -- npx -y fedora-agents-mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "amineutron-fedora-agents": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "fedora-agents-mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add amineutron-fedora-agents --command npx --arg -y --arg fedora-agents-mcp
```

### Hermes

```yaml
mcp_servers:
  amineutron-fedora-agents:
    command: "npx"
    args: ["-y", "fedora-agents-mcp"]
```

### Netclaw

```json
{
  "McpServers": {
    "amineutron-fedora-agents": {
      "Transport": "stdio",
      "Command": "npx",
      "Arguments": [
        "-y",
        "fedora-agents-mcp"
      ]
    }
  }
}
```

### Vellum

```bash
assistant mcp add amineutron-fedora-agents -t stdio -c npx -a -y fedora-agents-mcp
```

### Other

```json
{
  "mcpServers": {
    "amineutron-fedora-agents": {
      "command": "npx",
      "args": [
        "-y",
        "fedora-agents-mcp"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-09-24 (score 61)

First indexed and scored.

## MCP tools (19)

### `help` (~30 tokens)

Liste tous les outils disponibles avec leurs descriptions. Appelle cet outil en premier pour savoir ce que tu peux faire.

### `vm_start` (~57 tokens)

Démarre une VM KVM et attend optionnellement que SSH soit accessible

Input parameters:

- `timeout` (number)
- `vm_name` (string, required)
- `wait_ip` (boolean)
- `wait_ssh` (boolean)

### `vm_stop` (~66 tokens)

Arrête une VM KVM proprement (ou force l'arrêt avec --force) ⚠️ ATTENTION: Opération potentiellement destructive!

Input parameters:

- `force` (boolean)
- `timeout` (number)
- `vm_name` (string, required)
- `wait` (boolean)

### `vm_destroy` (~57 tokens)

Supprime complètement une VM KVM (définition + stockage) ⚠️ ATTENTION: Opération potentiellement destructive!

Input parameters:

- `force` (boolean)
- `keep_storage` (boolean)
- `vm_name` (string, required)

### `vm_status` (~57 tokens)

Affiche le status et les informations d'une VM (IP, SSH, ressources). Sans vm_name, liste toutes les VMs.

Input parameters:

- `detailed` (boolean)
- `json` (boolean)
- `vm_name` (string)

### `vm_exec` (~73 tokens)

Exécute une commande dans une VM via SSH ⚠️ ATTENTION: Opération potentiellement destructive!

Input parameters:

- `capture` (boolean)
- `command` (string, required)
- `sudo` (boolean)
- `timeout` (number)
- `user` (string)
- `vm_name` (string, required)

### `vm_copy` (~83 tokens)

Copie des fichiers entre l'hôte et une VM via SCP ⚠️ ATTENTION: Opération potentiellement destructive!

Input parameters:

- `checksum` (boolean)
- `dest` (string, required)
- `direction` (string)
- `preserve` (boolean)
- `recursive` (boolean)
- `source` (string, required)
- `vm_name` (string, required)

### `vm_snapshot` (~80 tokens)

Gère les snapshots d'une VM (create, list, restore, delete) ⚠️ ATTENTION: Opération potentiellement destructive!

Input parameters:

- `action` (string, required)
- `description` (string)
- `live` (boolean)
- `snapshot_name` (string)
- `vm_name` (string, required)
- `yes` (boolean)

### `vm_verify` (~90 tokens)

Vérifie qu'une VM clonée est une copie fidèle du système hôte

Input parameters:

- `compare_content` (boolean)
- `compare_packages` (boolean)
- `ip`
- `quick` (boolean)
- `save_report` (boolean)
- `self_check` (boolean)
- `user` (string)
- `verbose` (boolean)
- `vm_name` (string)

### `vm_clone` (~85 tokens)

Clone une VM KVM existante (complet ou lié)

Input parameters:

- `autostart` (boolean)
- `linked` (boolean)
- `network` (string)
- `new_vm_name` (string, required)
- `source_vm` (string, required)
- `start` (boolean)
- `timeout_ms` (number)
- `tracking_session_id` (string)

### `vm_clone_system` (~94 tokens)

Clone le système hôte entier vers une VM KVM bootable ⚠️ ATTENTION: Opération potentiellement destructive!

Input parameters:

- `cpus` (number)
- `disk_size` (string)
- `dry_run` (boolean)
- `hostname` (string)
- `memory` (number)
- `name` (string)
- `timeout_ms` (number)
- `username` (string)

### `backup_create` (~97 tokens)

Crée un backup (timeshift, borg, vm-snapshot, ou manual)

Input parameters:

- `comment` (string)
- `dest` (string)
- `dry_run` (boolean)
- `live` (boolean)
- `notify` (boolean)
- `source` (string)
- `timeout_ms` (number)
- `type` (string, required)
- `verify` (boolean)
- `vm` (string)

### `backup_list` (~54 tokens)

Liste tous les backups disponibles (par type ou tous)

Input parameters:

- `all` (boolean)
- `detailed` (boolean)
- `limit` (number)
- `sort` (string)
- `type` (string)

### `backup_restore` (~84 tokens)

Restaure un backup (ATTENTION: opération destructive!) ⚠️ ATTENTION: Opération potentiellement destructive!

Input parameters:

- `dry_run` (boolean)
- `force` (boolean)
- `identifier` (string, required)
- `partial` (string)
- `skip_pre_snapshot` (boolean)
- `target` (string)
- `type` (string, required)

### `backup_verify` (~53 tokens)

Vérifie l'intégrité des backups

Input parameters:

- `backup_id` (string)
- `deep` (boolean)
- `quick` (boolean)
- `timeout_ms` (number)
- `type` (string)

### `backup_clean` (~63 tokens)

Applique les politiques de rétention et supprime les anciens backups ⚠️ ATTENTION: Opération potentiellement destructive!

Input parameters:

- `dry_run` (boolean)
- `force` (boolean)
- `keep_last` (number)
- `type` (string, required)

### `backup_status` (~37 tokens)

Affiche le dashboard global des backups (status, espace, alertes)

Input parameters:

- `compact` (boolean)
- `watch` (boolean)

### `vm_export` (~235 tokens)

Exporte une VM KVM dans une archive portable (.tar.gz) avec sanitarisation des donnees sensibles. Mode classic: supprime tous les comptes utilisateurs, passwords, keyrings, cles SSH users.   Un script de configuration s'execute au premier demarrage (creation user + password root). Mode exam: conserve les comptes et privileges, sanitarise machine-id/SSH-host-keys/reseau/logs. Mode custom: choisir les operations virt-sysprep via le parametre operations[].   Avec firstboot=true: installe aussi le script de configuration premier demarrage. Effectue un test pre-export (integrite disque, espace) et un test post-export (archive OK). Archive generee: <vm>-export-YYYYMMDD-HHMMSS-<mode>.tar.gz dans ~/vm-exports/ par defaut.

Input parameters:

- `dry_run` (boolean)
- `firstboot` (boolean)
- `force` (boolean)
- `mode` (string)
- `operations` (array)
- `output_path` (string)
- `vm_name` (string, required)

### `vm_import` (~144 tokens)

Importe une VM KVM depuis une archive exportee par vm_export. Effectue un test pre-import (integrite archive + disque qcow2) et post-import (VM definie + disque OK). Genere un nouveau UUID et une nouvelle adresse MAC automatiquement. Le disque est copie dans /var/lib/libvirt/images/ par defaut. Avec --start: demarre la VM et attend SSH apres l'import. ⚠️ ATTENTION: Opération potentiellement destructive!

Input parameters:

- `archive_path` (string, required)
- `dry_run` (boolean)
- `new_name` (string)
- `pool_dir` (string)
- `start` (boolean)

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/amineutron-fedora-agents/fedora-agents-mcp#diagnostics

## Score history

- 2026-09-24: 61

## Common questions

### What is the KVM/libvirt VMs and backups (Fedora) MCP server?

KVM/libvirt VMs and backups (Fedora) is an MCP server listed in the public MCP registry as io.github.amineutron/fedora-agents. Manage local KVM/libvirt VMs and Timeshift/Borg backups on Fedora: start, stop, clone, snapshot. This page covers its npm package (fedora-agents-mcp).

### Is the KVM/libvirt VMs and backups (Fedora) MCP server safe to use?

KVM/libvirt VMs and backups (Fedora) scores 61 out of 100 on VerifyMCP. We found no known CVEs affecting it as of 24 September 2026. It declares no install or post-install scripts. Its build provenance is signed and verified. That is a record of what we were able to check automatically, not an endorsement. The category breakdown on this page shows every signal behind the number, including the ones we could not confirm.

### What tools does the KVM/libvirt VMs and backups (Fedora) MCP server expose?

KVM/libvirt VMs and backups (Fedora) exposes 19 tools: help, vm_start, vm_stop, vm_destroy, vm_status, and 14 more. Their descriptions and schemas cost roughly 1,539 tokens of context every time the server is loaded.

### Is the KVM/libvirt VMs and backups (Fedora) MCP server still maintained?

KVM/libvirt VMs and backups (Fedora) is still listed as active in the MCP registry. We last reached this channel on 24 September 2026. Those dates come from our own scans of the registry and the channel itself, not from anything the publisher announced.

### What licence is the KVM/libvirt VMs and backups (Fedora) MCP server under?

KVM/libvirt VMs and backups (Fedora) declares the MIT licence, which is OSI-approved. That covers the source only, and says nothing about the cost of any service it calls.

## Links

- npm package: https://www.npmjs.com/package/fedora-agents-mcp
- Socket report: https://socket.dev/npm/package/fedora-agents-mcp
- Repository: https://github.com/amineutron/fedora-agents
- Changelog RSS feed: https://verifymcp.io/servers/amineutron-fedora-agents/fedora-agents-mcp.xml
- Changelog JSON feed: https://verifymcp.io/servers/amineutron-fedora-agents/fedora-agents-mcp.json
- HTML version of this page: https://verifymcp.io/servers/amineutron-fedora-agents/fedora-agents-mcp
