From blackpoint
Use this skill when working with the Blackpoint Cyber (CompassOne) MCP tools — Bearer token authentication, the partner-tenant-asset hierarchy, navigation tools, and the read-only tool surface across tenants, assets, detections, and vulnerabilities.
How this skill is triggered — by the user, by Claude, or both
Slash command
/blackpoint:api-patternsWhen to use
When working with Blackpoint Cyber / CompassOne authentication, partner-tenant-asset hierarchy, or pagination through detections and vulnerabilities. Use when: blackpoint api, blackpoint authentication, blackpoint mcp, compassone api, compassone authentication, blackpoint tenant, or blackpoint asset.
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Blackpoint Cyber is a managed detection and response (MDR) provider.
Blackpoint Cyber is a managed detection and response (MDR) provider. The CompassOne portal exposes a partner-tenant-asset hierarchy: a partner (the MSP) sees many tenants (their customers), each tenant has many assets (endpoints, identities, cloud accounts), and detections / vulnerabilities are produced against those assets.
Blackpoint uses an API token passed via header. CompassOne issues the token in the partner portal.
| Header | Value |
|---|---|
X-Blackpoint-Api-Token | The raw CompassOne token |
The gateway maps the environment variable BLACKPOINT_API_TOKEN onto
the X-Blackpoint-Api-Token header automatically. Internally, the
Blackpoint MCP server forwards this to CompassOne as a Bearer token —
you do not need to add the Bearer prefix yourself.
export BLACKPOINT_API_TOKEN="your-compassone-token"
Optional: BLACKPOINT_BASE_URL overrides the CompassOne base URL for
regional or partner-specific deployments.
Partner (MSP)
└── Tenant (customer)
└── Asset (endpoint / identity / cloud account)
└── Detections / Vulnerabilities
Always pivot top-down: identify the tenant first, then drill into assets, then look at detections/vulnerabilities for that asset.
| Tool | Purpose |
|---|---|
blackpoint_navigate | Discover available domains |
blackpoint_back | Pop back to the prior context |
blackpoint_status | Health/status check |
Tools follow blackpoint_<domain>_<action>. Currently functional
domains:
tenantsassetsdetectionsvulnerabilitiesAdditional domains (alerts, cloud security, notifications, partners, threat intel, tickets) are stubbed in the MCP server but not yet implemented — do not call those.
Blackpoint list endpoints use page/limit-style pagination. Always
check whether more pages exist before claiming a result is complete,
especially for detections and vulnerabilities — those can run
into the thousands.
| Status | Meaning | Action |
|---|---|---|
| 401 | Bad/missing Bearer token | Re-check BLACKPOINT_API_TOKEN |
| 403 | Token valid but no access to the requested tenant | Check partner-tenant scoping |
| 404 | Unknown tenant / asset / detection | Re-list to confirm |
| 429 | Rate limit | Back off and retry |
blackpoint_tenants_list first and then drill in per-tenant.npx claudepluginhub wyre-technology/msp-claude-plugins --plugin blackpointUse this skill when investigating a Blackpoint Cyber detection — drilling from a tenant to its assets, walking the detection list, pulling vulnerability and dark-web context, and assembling an incident timeline.
Guides usage of SentinelOne Purple MCP tools: connection setup, Service User token auth, transport modes, dual GraphQL/REST API patterns, rate limits, and error handling.
Guides usage of RunZero MCP tools for asset discovery, network scanning, site/service management, and Export API patterns with Bearer token auth.