MCP server for ConnectWise Automate RMM — computers, clients, alerts, and scripts.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"connectwise-automate": {
"env": {
"CW_AUTOMATE_PASSWORD": "your-password",
"CW_AUTOMATE_USERNAME": "your-username",
"CW_AUTOMATE_CLIENT_ID": "your-client-id",
"CW_AUTOMATE_SERVER_URL": "https://your-server.hostedrmm.com"
},
"args": [
"@wyre-technology/connectwise-automate-mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP server for ConnectWise Automate RMM — computers, clients, alerts, and scripts.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@wyre-technology/connectwise-automate-mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @wyre-technology/connectwise-automate-mcp against OSV.dev.
Click any tool to inspect its schema.
This server is missing a description.If you've used it, help the community.
Add informationBe the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in other
MCP server for Spanning Cloud Backup — M365/GWS/Salesforce backups, restores, audit.
AI agent control of 3D printers — 432 tools for OctoPrint, Moonraker, Bambu, Prusa, Elegoo
MCP server for Kaseya Autotask PSA — companies, tickets, projects, time entries, and more.
On-chain provenance lookup for AnchorRegistry. Resolve AR-IDs, hashes, and full trees. Authless.
MCP Security Weekly
Get CVE alerts and security updates for io.github.wyre-technology/connectwise-automate-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server for ConnectWise Automate with decision tree architecture for Claude.
npm install @wyre-technology/connectwise-automate-mcp
Set the following environment variables:
| Variable | Required | Description |
|---|---|---|
CW_AUTOMATE_SERVER_URL | Yes | Your ConnectWise Automate server URL |
CW_AUTOMATE_CLIENT_ID | Yes | Integrator Client ID |
CW_AUTOMATE_USERNAME | Yes | Integrator username or user credentials |
CW_AUTOMATE_PASSWORD | Yes | Integrator password or user password |
CW_AUTOMATE_2FA_CODE | No | Two-factor authentication code (if required) |
Add to your Claude configuration:
{
"mcpServers": {
"connectwise-automate": {
"command": "npx",
"args": ["@wyre-technology/connectwise-automate-mcp"],
"env": {
"CW_AUTOMATE_SERVER_URL": "https://your-server.hostedrmm.com",
"CW_AUTOMATE_CLIENT_ID": "your-client-id",
"CW_AUTOMATE_USERNAME": "your-username",
"CW_AUTOMATE_PASSWORD": "your-password"
}
}
}
}
The server uses a decision tree pattern. Start by navigating to a domain:
cwautomate_navigate to select a domain (computers, clients, alerts, scripts)cwautomate_back to return to the main menu# Install dependencies
npm install
# Build
npm run build
# Run tests
npm test
# Type check
npm run typecheck
# Lint
npm run lint
Apache-2.0