ConnectWise Automate is configured in MSP Settings → Integrations.
How to connect
ConnectWise Automate uses integrator credentials issued from the Automate Control Center. Rallied.ai exchanges them for an API access token on connect.Create an integrator account in Automate
Open the Automate Control Center and go to System → Integrator. Create a new integrator account (or pick an existing one) and note the username and password. Make sure the integrator has the API permissions you want the agent to use — read-only for inventory + alerts, and the relevant script-execution permissions if you plan to remediate.
Connect ConnectWise Automate
Find the ConnectWise Automate card and click Connect. A credentials form appears.
Enter your credentials
Fill in:
- Server Hostname — your Automate server hostname, e.g.
automate.yourcompany.com(nohttps://prefix, no trailing slash — Rallied.ai always uses HTTPS) - Integrator Username — the integrator account’s username
- Integrator Password — the integrator account’s password
How the agent uses it
When a request touches an Automate-managed endpoint — “is DC01 online?”, “how much free disk does maria-laptop have?”, “run our cleanup script on the kiosk”, “clear the noisy disk-space alert” — the agent typically:- Resolves the client with
cwa-list-clients, then finds the computer withcwa-list-computers(filter by client / hostname / OS) and pulls details fromcwa-get-computer. - Triages alerts with
cwa-list-alerts(tenant-wide) orcwa-get-computer-alerts(per device) to understand severity and context. - Picks a remediation script from
cwa-list-scriptsand schedules it on the target computer(s) withcwa-run-script(approval-gated). - Once the underlying issue is fixed, dismisses the alert with
cwa-clear-alert(approval-gated).
Tools
| Tool | Default policy | Description |
|---|---|---|
connectwise_automate:cwa-list-clients | Auto | List clients in Automate |
connectwise_automate:cwa-list-computers | Auto | List computers, optionally filtered by client, location, status, or OS |
connectwise_automate:cwa-get-computer | Auto | Get full details for a specific computer |
connectwise_automate:cwa-list-alerts | Auto | List alerts across the tenant |
connectwise_automate:cwa-get-computer-alerts | Auto | List alerts for a specific computer |
connectwise_automate:cwa-clear-alert | Approval needed | Clear (dismiss) an active alert |
connectwise_automate:cwa-list-scripts | Auto | List automation scripts available in the tenant |
connectwise_automate:cwa-run-script | Approval needed | Run a script on one or more computers |