find-contact
Resolve a 3CX contact or extension by email, extension, or name
Get a security posture summary for a RocketCyber customer account
$ 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.
/account-summaryContext preview
What this command does when you run it.
Get a security posture summary for a RocketCyber customer account
description: Get a security posture summary for a RocketCyber customer account argument-hint: "<account>" arguments: [account]
Generate a comprehensive security posture summary for a specific customer account, including active incidents, agent health, and recent threat activity.
1. **Resolve account by name or ID**
curl -s "https://api-${ROCKETCYBER_REGION:-us}.rocketcyber.com/v3/accounts/{id}" \
-H "Authorization: Bearer ${ROCKETCYBER_API_KEY}" curl -s "https://api-${ROCKETCYBER_REGION:-us}.rocketcyber.com/v3/accounts" \
-H "Authorization: Bearer ${ROCKETCYBER_API_KEY}" \
| jq '.data[] | select(.name | test("ACCOUNT_NAME"; "i"))'2. **Get agent status for the account**
curl -s "https://api-${ROCKETCYBER_REGION:-us}.rocketcyber.com/v3/agents?accountId={id}" \
-H "Authorization: Bearer ${ROCKETCYBER_API_KEY}"3. **Get active incidents for the account**
curl -s "https://api-${ROCKETCYBER_REGION:-us}.rocketcyber.com/v3/incidents?accountId={id}&status=open" \
-H "Authorization: Bearer ${ROCKETCYBER_API_KEY}"4. **Get recent incidents (last 30 days) for trend context**
curl -s "https://api-${ROCKETCYBER_REGION:-us}.rocketcyber.com/v3/incidents?accountId={id}&limit=100" \
-H "Authorization: Bearer ${ROCKETCYBER_API_KEY}"5. **Get application inventory (optional, for completeness)**
curl -s "https://api-${ROCKETCYBER_REGION:-us}.rocketcyber.com/v3/apps?accountId={id}" \
-H "Authorization: Bearer ${ROCKETCYBER_API_KEY}"6. **Format results as a comprehensive summary**
| Parameter | Type | Required | Default | Description | |-----------|------|----------|---------|-------------| | account | string/int | Yes | - | Account name or ID to summarize |
/account-summary account="Acme Corporation"
/account-summary account=12345
/account-summary account="Acme"
================================================================================ RocketCyber Security Summary: Acme Corporation ================================================================================ ACCOUNT INFORMATION -------------------------------------------------------------------------------- Account ID: 12345 Account Name: Acme Corporation Status: Active AGENT STATUS -------------------------------------------------------------------------------- Total Agents: 47 Online: 45 Offline: 2 ** WARNING: 2 agents offline ** Offline Agents: - WORKSTATION-15 (last seen: 2026-02-20 08:30) - SERVER-BACKUP (last seen: 2026-02-19 14:00) ACTIVE INCIDENTS -------------------------------------------------------------------------------- Total Open: 5 By Severity: Critical: 0 High: 1 Medium: 2 Low: 2 By Verdict: Malicious: 0 Suspicious: 2 Benign: 1 Pending: 2 Top Active Incidents: | ID | Title | Severity | Verdict | Created | |-------|------------------------------------------|----------|------------|--------------------| | 98760 | Unauthorized remote access tool detected | High | Suspicious | 2026-02-22 10:15 | | 98750 | Unusual outbound connection | Medium | Suspicious | 2026-02-21 16:45 | | 98745 | New scheduled task created | Medium | Pending | 2026-02-21 09:30 | | 98740 | Browser extension installed | Low | Benign | 2026-02-20 14:00 | | 98735 | USB device connected | Low | Pending | 2026-02-20 11:00 | LAST 30 DAYS -------------------------------------------------------------------------------- Total Incidents: 18 Resolved: 13 False Positives: 4 Still Open: 5 Malicious Verdicts: 1 APPLICATIONS (Top Categories) -------------------------------------------------------------------------------- Total Detected: 152 Remote Access: 3 (TeamViewer, AnyDesk, Splashtop) Security Tools: 47 (Windows Defender, RocketAgent) ================================================================================ Security Posture: MODERATE - 2 offline agents need attention - 1 High severity incident requires review - 1 confirmed malicious incident resolved in last 30 days Recommended Actions: 1. Investigate the 2 offline agents (WORKSTATION-15, SERVER-BACKUP) 2. Review High severity incident #98760 (unauthorized remote access tool) 3. Verify the 3 remote access tools are authorized
================================================================================ RocketCyber Security Summary: Beta LLC ================================================================================ ACCOUNT INFORMATION -------------------------------------------------------------------------------- Account ID: 12346 Account Name: Beta LLC Status: Active AGENT STATUS -------------------------------------------------------------------------------- Total Agents: 15 Online: 15 Offline: 0 ACTIVE INCIDENTS -------------------------
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