blumira-msplisted
Install: claude install-skill wyre-technology/msp-claude-plugins
# Blumira MSP Operations
## Overview
Blumira's MSP path group (`/msp/*`) enables managed service providers to operate across multiple client organizations from a single set of credentials. This skill covers account management, cross-account queries, and per-account operations.
## Key Concepts
### MSP vs Org Paths
| Feature | Org Path (`/org/*`) | MSP Path (`/msp/*`) |
|---------|-------------------|---------------------|
| Scope | Single organization | Multiple managed accounts |
| Findings | Own findings only | All accounts or per-account |
| Devices | Own devices only | Per-account device lists |
| Users | Own users only | Per-account user lists |
| Auth | Org-level JWT | MSP-level JWT |
### Account Context
MSP tools require an `account_id` parameter to target a specific client account. Use `blumira_msp_accounts_list` to enumerate available accounts.
## API Patterns
### List Managed Accounts
```
blumira_msp_accounts_list
page_size=100
```
### Get Account Details
```
blumira_msp_accounts_get
account_id=<UUID>
```
### Cross-Account Findings
```
blumira_msp_findings_all
status.eq=10
severity.in=HIGH,CRITICAL
order_by=-created
```
Returns findings from ALL managed accounts with account context included.
### Per-Account Findings
```
blumira_msp_findings_list
account_id=<UUID>
status.eq=10
```
### Get a Finding in Account Context
```
blumira_msp_findings_get
account_id=<UUID>
finding_id=<UUID>
```
### Resolve an Account's Finding
```
blumira