blumira-msp

Solid

Blumira's MSP path group (`/msp/*`): managed-account enumeration, cross-account and per-account finding queries, per-account device, agent-key and user management, and how MSP paths differ from org paths.

AI & Automation 36 stars 16 forks Updated today Apache-2.0

Install

View on GitHub

Quality Score: 80/100

Stars 20%
52
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# 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...

Details

Author
wyre-technology
Repository
wyre-technology/msp-claude-plugins
Created
5 months ago
Last Updated
today
Language
Astro
License
Apache-2.0

Similar Skills

Semantically similar based on skill content — not just same category