find-contact
Resolve a 3CX contact or extension by email, extension, or name
List active RMM alerts from Atera
$ npx -y skills add wyre-technology/msp-claude-plugins --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
/list-alertsContext preview
What this command does when you run it.
List active RMM alerts from Atera
description: List active RMM alerts from Atera argument-hint: "[customer_id] [severity] [alert_category] [since] [limit]" arguments: [customer_id, severity, alert_category, since, limit]
List active RMM alerts with filtering by customer, severity, and alert category.
1. **Build query parameters**
2. **Fetch alerts**
curl -s -X GET "https://app.atera.com/api/v3/alerts" \
-H "X-API-KEY: $ATERA_API_KEY" \
-H "Accept: application/json"With customer filter:
curl -s -X GET "https://app.atera.com/api/v3/alerts?customerId={customer_id}" \
-H "X-API-KEY: $ATERA_API_KEY" \
-H "Accept: application/json"3. **Apply filters**
4. **Sort and format results**
5. **Return alert list**
| Parameter | Type | Required | Default | Description | |-----------|------|----------|---------|-------------| | customer_id | integer | No | - | Filter by customer ID | | severity | string | No | - | Information, Warning, Critical | | alert_category | string | No | - | Hardware, Disk, Availability, Performance, General | | since | datetime | No | 24 hours | Alerts since this date | | limit | integer | No | 50 | Maximum results (max 500) |
/list-alerts
/list-alerts --customer_id 12345
/list-alerts --severity Critical
/list-alerts --alert_category Disk
/list-alerts --customer_id 12345 --severity Critical
/list-alerts --since "2026-02-01"
/list-alerts --severity Warning --limit 100
Active Alerts: 23 Critical (5): | ID | Alert | Device | Customer | Created | |-------|--------------------------------|------------------|-----------------|---------------------| | 98765 | Disk Space Critical (<5%) | SERVER-DC01 | Acme Corp | 2026-02-04 09:15:00 | | 98766 | Service Stopped: SQL Server | SERVER-SQL01 | Acme Corp | 2026-02-04 08:45:00 | | 98767 | CPU Usage >95% for 30 min | WORKSTATION-01 | Beta Inc | 2026-02-04 08:30:00 | ... Warning (12): | ID | Alert | Device | Customer | Created | |-------|--------------------------------|------------------|-----------------|---------------------| | 98770 | Disk Space Warning (<15%) | LAPTOP-JD01 | Acme Corp | 2026-02-04 07:00:00 | | 98771 | Backup Failed | SERVER-BK01 | Gamma LLC | 2026-02-04 06:30:00 | ... Information (6): | ID | Alert | Device | Customer | Created | |-------|--------------------------------|------------------|-----------------|---------------------| | 98780 | Windows Update Available | DESKTOP-ABC123 | Acme Corp | 2026-02-04 05:00:00 | ... Summary: 5 Critical | 12 Warning | 6 Information
Customer not found: 12345 Please verify the customer ID and try again. Use /search-customers to find valid customer IDs.
Invalid severity: "High" Valid severities: Information, Warning, Critical
Invalid alert category: "Network" Valid categories: Hardware, Disk, Availability, Performance, General
No alerts found matching your criteria Filters applied: - Customer: Acme Corp (12345) - Severity: Critical - Since: 2026-02-01 Try broadening your search criteria.
Rate limit exceeded (700 req/min) Waiting 30 seconds before retry...
GET /api/v3/alerts?page=1&itemsInPage=50
X-API-KEY: {api_key}GET /api/v3/alerts?customerId={customerId}
X-API-KEY: {api_key}{
"Page": 1,
"ItemsInPage": 50,
"TotalPages": 3,
"TotalItemsCount": 125,
"items": [
{
"AlertID": 98765,
"Title": "Disk Space Critical",
"Severity": "Critical",
"AlertCategoryID": "Disk",
"DeviceName": "SERVER-DC01",
"CustomerName": "Acme Corp",
"Created": "2026-02-04T09:15:00Z"
}
]
}One command to supercharge Claude Code for MSP workflows. Then restart Claude Code. That's it. Documentation: mcp.wyre.ai
Repo: wyre-technology/msp-claude-plugins
Resolve a 3CX contact or extension by email, extension, or name
Search for specific threat patterns in Abnormal Security by sender, recipient, attack type, or keywords
Triage recent email threats detected by Abnormal Security by severity and attack type