blackpoint-cyber-api-patterns

Solid

Blackpoint Cyber (CompassOne) MCP fundamentals: API-token header auth and its internal Bearer forwarding, the partner-tenant-asset hierarchy, navigation tools, which tool domains are functional versus stubbed, pagination, and HTTP error causes.

API & Backend 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

# Blackpoint Cyber (CompassOne) MCP Tools & API Patterns ## Overview 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. ## Connection & Authentication 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. ```bash export BLACKPOINT_API_TOKEN="your-compassone-token" ``` Optional: `BLACKPOINT_BASE_URL` overrides the CompassOne base URL for regional or partner-specific deployments. ## Hierarchy ``` 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. ## Navigation Tools | Tool | Purpose | |------|---------| | `blackpoint_navigate` | Discover available domains | | `blackpoint_back` | P...

Details

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

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category