# Datto RMM (oci · ghcr.io/wyre-technology/datto-rmm-mcp:v1.7.6)

MCP server for Datto RMM — devices, alerts, sites, jobs, and audit data.

- Trust score: 41/100 (low)
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-22

## Components

- oci · `ghcr.io/wyre-technology/datto-rmm-mcp:v1.7.6`: 41/100 (this document), [markdown](https://verifymcp.io/servers/wyre-technology-datto-rmm-mcp/ghcr-io-wyre-technology-datto-rmm-mcp-v1-7-6.md), [page](https://verifymcp.io/servers/wyre-technology-datto-rmm-mcp/ghcr-io-wyre-technology-datto-rmm-mcp-v1-7-6)

## Channel facts

- Registry: `oci`
- Package: `ghcr.io/wyre-technology/datto-rmm-mcp:v1.7.6`
- 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-08-22.

- **Supply Chain Security**: 0/100
  - Malware scan not yet available for this package.
  - Known CVEs could not be checked: this artifact ships no SBOM, so there is no dependency list to read. Publishing one would let us assess it.
  - Install-script risk not yet assessed.
  - Dependency health could not be checked: this artifact ships no SBOM, so there is no dependency list to read. Publishing one would let us assess it.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (Apache-2.0).
  - Actively maintained (last published 1 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 85/100
  - 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 609 tokens (~55/item across 11 items; 10 tools + 1 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**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.
  - Supports UI / widget rendering.

**Unverified: 2 categories.** Categories scored 0 because we could not verify them: 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

### Claude

```bash
claude mcp add wyre-technology-datto-rmm-mcp -- docker run --rm -i ghcr.io/wyre-technology/datto-rmm-mcp:v1.7.6
```

### Codex

```bash
codex mcp add wyre-technology-datto-rmm-mcp -- docker run --rm -i ghcr.io/wyre-technology/datto-rmm-mcp:v1.7.6
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "wyre-technology-datto-rmm-mcp": {
      "type": "local",
      "command": [
        "docker",
        "run",
        "--rm",
        "-i",
        "ghcr.io/wyre-technology/datto-rmm-mcp:v1.7.6"
      ],
      "enabled": true
    }
  }
}
```

### Hermes

```yaml
mcp_servers:
  wyre-technology-datto-rmm-mcp:
    command: "docker"
    args: ["run", "--rm", "-i", "ghcr.io/wyre-technology/datto-rmm-mcp:v1.7.6"]
```

### Other

```json
{
  "mcpServers": {
    "wyre-technology-datto-rmm-mcp": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "ghcr.io/wyre-technology/datto-rmm-mcp:v1.7.6"
      ]
    }
  }
}
```

## 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-08-20 (score 41)

First indexed and scored.

## MCP tools (10)

### `datto_list_devices` (~78 tokens)

List all devices in Datto RMM. Can filter by site. To look up a single device by hostname, use datto_find_device instead.

Input parameters:

- `max` (number): Maximum number of results (default: 50)
- `siteUid` (string): Filter devices by site UID (optional - if omitted, returns all devices)

### `datto_find_device` (~132 tokens)

Find a device by hostname and return its UID plus a lightweight summary. Use this before datto_get_device when the user provides a hostname instead of a UID.

Input parameters:

- `exactMatch` (boolean): Require an exact (case-insensitive) hostname match. Set to false for partial/substring matching. Defaults to true.
- `hostname` (string, required): Hostname to search for, for example APP-HV-HOST06
- `max` (number): Maximum number of matching devices to return (default: 25)
- `siteUid` (string): Optional site UID to narrow the hostname lookup to one site

### `datto_get_device` (~50 tokens)

Get full details for a specific device by its UID. If you only have a hostname, call datto_find_device first to resolve the UID.

Input parameters:

- `deviceUid` (string, required): The device UID

### `datto_list_alerts` (~59 tokens)

List open alerts. Can filter by site.

Input parameters:

- `max` (number): Maximum number of results (default: 50)
- `siteUid` (string): Filter alerts by site UID (optional - if omitted, returns all account alerts)

### `datto_get_alert` (~31 tokens)

Get details for a specific alert by its UID

Input parameters:

- `alertUid` (string, required): The alert UID

### `datto_resolve_alert` (~31 tokens)

Resolve an alert by its UID

Input parameters:

- `alertUid` (string, required): The alert UID to resolve

### `datto_list_sites` (~33 tokens)

List all sites in the account

Input parameters:

- `max` (number): Maximum number of results (default: 50)

### `datto_get_site` (~31 tokens)

Get details for a specific site by its UID

Input parameters:

- `siteUid` (string, required): The site UID

### `datto_run_quickjob` (~80 tokens)

Run a quick job on a device

Input parameters:

- `componentUid` (string, required): UID of the component to run
- `deviceUid` (string, required): The device UID to run the job on
- `jobName` (string, required): Name for the quick job
- `variables` (object): Variables to pass to the job (key-value pairs)

### `datto_get_device_audit` (~63 tokens)

Get audit data for a device (hardware, software, OS information)

Input parameters:

- `auditType` (string): Type of audit: 'full' for complete audit or 'software' for software inventory only
- `deviceUid` (string, required): The device UID

## Diagnostics

Captured diagnostic sections: Provenance. The full working is on the page: https://verifymcp.io/servers/wyre-technology-datto-rmm-mcp/ghcr-io-wyre-technology-datto-rmm-mcp-v1-7-6#diagnostics

## Score history

- 2026-08-22: 41
- 2026-08-21: 41
- 2026-08-20: 41

## Links

- Repository: https://github.com/wyre-technology/datto-rmm-mcp
- Changelog RSS feed: https://verifymcp.io/servers/wyre-technology-datto-rmm-mcp/ghcr-io-wyre-technology-datto-rmm-mcp-v1-7-6.xml
- Changelog JSON feed: https://verifymcp.io/servers/wyre-technology-datto-rmm-mcp/ghcr-io-wyre-technology-datto-rmm-mcp-v1-7-6.json
- HTML version of this page: https://verifymcp.io/servers/wyre-technology-datto-rmm-mcp/ghcr-io-wyre-technology-datto-rmm-mcp-v1-7-6
