find-contact
Resolve a 3CX contact or extension by email, extension, or name
Create a threshold-based monitor for an Atera agent
$ 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.
/create-monitorContext preview
What this command does when you run it.
Create a threshold-based monitor for an Atera agent
description: Create a threshold-based monitor for an Atera agent argument-hint: "<agent_id> <monitor_type> <name> <target> [interval] [threshold] [alert_severity]" arguments: [agent_id, monitor_type, name, target, interval, threshold, alert_severity]
Create a threshold-based monitor for an agent including HTTP, TCP, or SNMP monitoring.
1. **Validate agent exists**
curl -s -X GET "https://app.atera.com/api/v3/agents/{agent_id}" \
-H "X-API-KEY: $ATERA_API_KEY" \
-H "Accept: application/json"2. **Validate monitor parameters**
3. **Create the monitor** Based on monitor_type:
For HTTP:
curl -s -X POST "https://app.atera.com/api/v3/agents/{agent_id}/monitors/http" \
-H "X-API-KEY: $ATERA_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"Name": "<name>",
"URL": "<target>",
"Interval": <interval>,
"AlertSeverity": "<alert_severity>"
}'For TCP:
curl -s -X POST "https://app.atera.com/api/v3/agents/{agent_id}/monitors/tcp" \
-H "X-API-KEY: $ATERA_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"Name": "<name>",
"Port": <target>,
"Interval": <interval>,
"AlertSeverity": "<alert_severity>"
}'For SNMP:
curl -s -X POST "https://app.atera.com/api/v3/agents/{agent_id}/monitors/snmp" \
-H "X-API-KEY: $ATERA_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"Name": "<name>",
"OID": "<target>",
"Threshold": "<threshold>",
"Interval": <interval>,
"AlertSeverity": "<alert_severity>"
}'4. **Return monitor confirmation**
| Parameter | Type | Required | Default | Description | |-----------|------|----------|---------|-------------| | agent_id | integer | Yes | - | The agent ID to monitor | | monitor_type | string | Yes | - | HTTP, TCP, or SNMP | | name | string | Yes | - | Monitor display name | | target | string | Yes | - | URL, port, or OID to monitor | | interval | integer | No | 5 | Check interval in minutes | | threshold | string | No | - | Alert threshold value | | alert_severity | string | No | Warning | Information, Warning, Critical |
/create-monitor 12345 --monitor_type HTTP --name "Website Check" --target "https://example.com"
/create-monitor 12345 --monitor_type HTTP --name "Website Check" --target "https://example.com" --interval 5
/create-monitor 12345 --monitor_type TCP --name "SQL Port" --target "1433"
/create-monitor 12345 --monitor_type TCP --name "SQL Port" --target "1433" --alert_severity Critical
/create-monitor 12345 --monitor_type SNMP --name "CPU Usage" --target "1.3.6.1.2.1.25.3.3.1.2" --threshold "90"
/create-monitor 12345 --monitor_type SNMP --name "Disk Usage" --target "1.3.6.1.2.1.25.2.3.1.5" --threshold "80" --interval 10 --alert_severity Warning
Monitor Created Successfully Monitor ID: 9876 Type: HTTP Name: Website Check Agent: SERVER-WEB01 (ID: 12345) Customer: Acme Corporation Configuration: - URL: https://example.com - Interval: 5 minutes - Alert Severity: Warning - Expected Response: 200 OK Status: Active First check scheduled in 5 minutes
Monitor Created Successfully Monitor ID: 9877 Type: TCP Name: SQL Port Agent: SERVER-SQL01 (ID: 12345) Customer: Acme Corporation Configuration: - Port: 1433 - Interval: 5 minutes - Alert Severity: Critical Status: Active Monitoring for port connectivity
Monitor Created Successfully Monitor ID: 9878 Type: SNMP Name: CPU Usage Agent: SERVER-DC01 (ID: 12345) Customer: Acme Corporation Configuration: - OID: 1.3.6.1.2.1.25.3.3.1.2 - Threshold: 90 - Interval: 5 minutes - Alert Severity: Warning Status: Active Alert when value exceeds threshold
Agent not found: 12345 Please verify the agent ID and try again. Use /search-agents to find valid agent IDs.
Agent is offline: DESKTOP-ABC123 (ID: 12345) Last seen: 2026-02-03 18:45:00 (16 hours ago) Monitor can be created but won't collect data until agent is online. Proceed? [Y/n]
Invalid monitor type: "PING" Valid monitor types: - HTTP: Monitor website or API endpoints - TCP: Monitor port connectivity - SNMP: Monitor SNMP metrics with thresholds
Invalid URL: "example.com" HTTP monitors require a full URL: - https://example.com - http://192.168.1.100:8080/health
Invalid port: "sql" TCP monitors require a numeric port: - 1433 (SQL Server) - 3389 (RDP) - 443 (HTTPS)
Invalid OID format: "cpu.usage" SNMP monitors require a valid OID: - 1.3.6.1.2.1.25.3.3.1.2 (CPU) - 1.3.6.1.2.1.25.2.3.1.5 (Storage)
Monitor already exists for this target Existing Monitor: ID: 9870 Name: Website Check Target: https://example.com Create anyway? [y/N]
Rate limit exceeded (700 req/min) Waiting 30 seconds before retry...
GET /api/v3/agents/{agentId}
X-API-KEY: {api_key}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