oci ghcr.io/wyre-technology/datto-rmm-mcp:v1.7.6stdioApache-2.0updated 8d ago
MCP server for Datto RMM, enabling Claude to interact with your Datto RMM account.
What can you do with Datto RMM?
Datto RMM MCP Server
MCP server for Datto RMM, enabling Claude to interact with your Datto RMM account.
One-Click Deployment
[!IMPORTANT] Before you click: this server depends on
@wyre-technology/node-datto-rmm, which is hosted on the GitHub Packages npm registry. GitHub Packages has no anonymous access — even though the package is public, everynpm installneeds a token. The cloud builder runsnpm installfor you, so you must give it one, or the build fails withnpm error 401 Unauthorized ... npm.pkg.github.com.
- Create a GitHub Personal Access Token with the
read:packagesscope (classic token). Any GitHub account works — you do not need to be a member of thewyre-technologyorg to read its public packages.- Add it as a build variable when prompted by the deploy flow:
- Cloudflare Workers → set a build variable named
NODE_AUTH_TOKENto your PAT (Workers → Settings → Build → Variables and Secrets).- DigitalOcean App Platform → set an encrypted env var named
GITHUB_TOKENwith scope Build Time to your PAT (the.do/deploy.template.yamlalready declares it).
[!NOTE] The DigitalOcean target builds the full Docker image and runs the complete MCP server over HTTP — this is the recommended path for operators. This repo has no Cloudflare Workers entrypoint (
src/worker.ts), so the Workers button is not a supported target yet; prefer DigitalOcean or the prebuilt container image (ghcr.io/wyre-ai/datto-rmm-mcp).
Features
- Device Management: List, search, and get details for devices
- Alert Management: View and resolve alerts
- Interactive Alert Card (MCP Apps):
datto_get_alertrenders as an interactive card in MCP Apps hosts (Claude Desktop/web) with an in-card "Resolve alert" round-trip; neutral by default, brandable viawindow.__BRAND__injection orMCP_BRAND_*env vars; plain-JSON behavior is unchanged in other hosts - Site Management: List and view site details
- Quick Jobs: Run quick jobs on devices
- Audit Data: Retrieve full device audit or software inventory
Installation
Via MCP Gateway (Recommended)
This server is designed to work with the MCP Gateway which handles authentication and credential management.
Local Development
This server's @wyre-technology/* dependencies live on the GitHub Packages npm
registry, which requires a token even for public packages. Authenticate once, then install:
# Authenticate npm to GitHub Packages (token needs the read:packages scope)
export NODE_AUTH_TOKEN=$(gh auth token) # or a PAT with read:packages
npm install
npm run build
npm start
The repo's .npmrc already points the @wyre-technology scope at GitHub Packages and
reads the token from NODE_AUTH_TOKEN, so no further config is needed.
Configuration
The server accepts credentials via environment variables:
| Variable | Description |
|---|---|
DATTO_API_KEY |
Your Datto RMM API key |
DATTO_API_SECRET |
Your Datto RMM API secret |
DATTO_PLATFORM |
API platform: pinotage, merlot, concord, vidal, zinfandel, or syrah (default: concord) |
When used with the MCP Gateway, credentials are injected via X_API_KEY and X_API_SECRET environment variables.
Platform Selection
Datto RMM uses regional API endpoints. Select the platform that matches your account:
| Platform | Region/Description |
|---|---|
pinotage |
South Africa |
merlot |
Europe |
concord |
US East (default) |
vidal |
Canada |
zinfandel |
US West |
syrah |
Australia |
Available Tools
| Tool | Description |
|---|---|
datto_list_devices |
List devices with optional site filter |
datto_find_device |
Find a device by hostname (exact or partial match) and resolve its UID |
datto_get_device |
Get device details by UID |
datto_list_alerts |
List open alerts with optional site filter |
datto_get_alert |
Get alert details by UID (renders as an interactive card in MCP Apps hosts) |
datto_resolve_alert |
Resolve an alert |
datto_list_sites |
List all sites |
datto_get_site |
Get site details |
datto_run_quickjob |
Run a quick job on a device |
datto_get_device_audit |
Get device audit data (full or software only) |
Docker
Use the prebuilt image (no build, no token)
docker pull ghcr.io/wyre-ai/datto-rmm-mcp:latest
docker run -p 8080:8080 \
-e DATTO_API_KEY=xxx \
-e DATTO_API_SECRET=xxx \
-e DATTO_PLATFORM=concord \
ghcr.io/wyre-ai/datto-rmm-mcp:latest
The image is public and pulls anonymously, so this path needs no GitHub token at all.
Build from source
The build installs @wyre-technology/node-datto-rmm from GitHub Packages, which
requires a token even though the package is public (see
One-Click Deployment). The Dockerfile takes it as the
GITHUB_TOKEN build arg — omit it and the build fails at npm ci with
npm error 401 Unauthorized ... npm.pkg.github.com:
docker build --build-arg GITHUB_TOKEN=$(gh auth token) -t datto-rmm-mcp .
docker run -p 8080:8080 \
-e DATTO_API_KEY=xxx \
-e DATTO_API_SECRET=xxx \
-e DATTO_PLATFORM=concord \
datto-rmm-mcp
The token is written to a temporary .npmrc that is deleted in the same layer, so
it is never baked into the image.
[!NOTE] The image defaults to
MCP_TRANSPORT=httpon port 8080, so-p 8080:8080is required to reach it. Health check:curl http://localhost:8080/health.
License
Apache-2.0
Install
Add Datto RMM to your client. Pick the one you use.
claude mcp add ghcr-io-wyre-technology-datto-rmm-mcp-v1 -- docker run -i --rm ghcr.io/wyre-technology/datto-rmm-mcp:v1.7.6codex mcp add ghcr-io-wyre-technology-datto-rmm-mcp-v1 -- docker run -i --rm ghcr.io/wyre-technology/datto-rmm-mcp:v1.7.6amp mcp add ghcr-io-wyre-technology-datto-rmm-mcp-v1 -- docker run -i --rm ghcr.io/wyre-technology/datto-rmm-mcp:v1.7.6{
"mcpServers": {
"ghcr-io-wyre-technology-datto-rmm-mcp-v1": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/wyre-technology/datto-rmm-mcp:v1.7.6"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"ghcr-io-wyre-technology-datto-rmm-mcp-v1": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/wyre-technology/datto-rmm-mcp:v1.7.6"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"ghcr-io-wyre-technology-datto-rmm-mcp-v1","command":"docker","args":["run","-i","--rm","ghcr.io/wyre-technology/datto-rmm-mcp:v1.7.6"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"ghcr-io-wyre-technology-datto-rmm-mcp-v1": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/wyre-technology/datto-rmm-mcp:v1.7.6"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"ghcr-io-wyre-technology-datto-rmm-mcp-v1": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/wyre-technology/datto-rmm-mcp:v1.7.6"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"ghcr-io-wyre-technology-datto-rmm-mcp-v1": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/wyre-technology/datto-rmm-mcp:v1.7.6"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"ghcr-io-wyre-technology-datto-rmm-mcp-v1": {
"type": "local",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/wyre-technology/datto-rmm-mcp:v1.7.6"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"ghcr-io-wyre-technology-datto-rmm-mcp-v1": {
"command": {
"path": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/wyre-technology/datto-rmm-mcp:v1.7.6"
]
}
}
}
}Add to your Zed `settings.json`.
docker run -i --rm ghcr.io/wyre-technology/datto-rmm-mcp:v1.7.6Run `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
10 tools
Datto RMM exposes 10 tools to a connected agent.
- datto_list_devices
- List devices with optional site filter
- datto_find_device
- Find a device by hostname (exact or partial match) and resolve its UID
- datto_get_device
- Get device details by UID
- datto_list_alerts
- List open alerts with optional site filter
- datto_get_alert
- Get alert details by UID (renders as an interactive card in MCP Apps hosts)
- datto_resolve_alert
- Resolve an alert
- datto_list_sites
- List all sites
- datto_get_site
- Get site details
- datto_run_quickjob
- Run a quick job on a device
- datto_get_device_audit
- Get device audit data (full or software only)
Score
86 / 100
Excellent
- Documentation25/25
- Maintenance25/25
- Trust16/20
- Capability8/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 1 days ago
- Has a release history
- Repository is not archived
- Licensed Apache-2.0
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 10 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 1.7.6Latest | Aug 20, 2026 |
| 1.7.5 | Aug 13, 2026 |
| 1.7.4 | Aug 13, 2026 |
| 1.7.3 | Aug 10, 2026 |
| 1.7.2 | Aug 7, 2026 |
| 1.7.1 | Jul 25, 2026 |
| 1.7.0 | Jul 22, 2026 |
| 1.6.1 | Jul 18, 2026 |
| 1.6.0 | Jul 17, 2026 |
| 1.5.2 | Jul 16, 2026 |
| 1.4.8 | May 30, 2026 |