Server data from the Official MCP Registry
MCP server for Blackpoint Cyber MDR — alerts, threats, and operations.
MCP server for Blackpoint Cyber MDR — alerts, threats, and operations.
This is a well-structured MCP server for the Blackpoint Cyber CompassOne MDR platform with appropriate authentication, proper error handling, and permissions aligned to its purpose. The server uses environment variable-based credential management, implements domain-based access control, and lacks malicious patterns. Minor code quality improvements could enhance robustness, but no security vulnerabilities were identified. Supply chain analysis found 2 known vulnerabilities in dependencies (1 critical, 0 high severity).
7 files analyzed · 8 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: BLACKPOINT_API_TOKEN
Environment variable: BLACKPOINT_BASE_URL
Environment variable: MCP_TRANSPORT
Environment variable: AUTH_MODE
Environment variable: LOG_LEVEL
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-wyre-technology-blackpoint-mcp": {
"env": {
"AUTH_MODE": "your-auth-mode-here",
"LOG_LEVEL": "your-log-level-here",
"MCP_TRANSPORT": "your-mcp-transport-here",
"BLACKPOINT_BASE_URL": "your-blackpoint-base-url-here",
"BLACKPOINT_API_TOKEN": "your-blackpoint-api-token-here"
},
"args": [
"-y",
"blackpoint-mcp"
],
"command": "npx"
}
}
}From the project's GitHub README.
Model Context Protocol (MCP) server for Blackpoint Cyber CompassOne - Managed Detection and Response (MDR) platform.
This MCP server provides access to CompassOne's security capabilities through a decision-tree navigation interface:
The server uses decision-tree navigation to organize tools:
blackpoint_navigate, blackpoint_status)blackpoint_back to return to navigationAll tools follow the pattern: blackpoint_{domain}_{action}
Examples:
blackpoint_assets_list - List assets by classblackpoint_detections_list - List security detectionsblackpoint_vulnerabilities_scans_list - List vulnerability scansnpm install blackpoint-mcp
| Variable | Description | Required |
|---|---|---|
BLACKPOINT_API_TOKEN | CompassOne API token | Yes |
BLACKPOINT_BASE_URL | API base URL (may vary by region/partner) | No |
MCP_TRANSPORT | Transport mode: stdio or http | No (default: stdio) |
MCP_HTTP_PORT | HTTP port for gateway mode | No (default: 8080) |
AUTH_MODE | Set to gateway for header-based auth | No |
LOG_LEVEL | Logging level: debug, info, warn, error | No (default: info) |
When AUTH_MODE=gateway, the server reads credentials from HTTP headers:
X-Blackpoint-API-Token → BLACKPOINT_API_TOKENThis enables per-request authentication for multi-tenant gateways.
# Set credentials
export BLACKPOINT_API_TOKEN="your-api-token"
# Run the server
blackpoint-mcp
export AUTH_MODE=gateway
export MCP_TRANSPORT=http
export MCP_HTTP_PORT=8080
blackpoint-mcp
// Start by checking available domains
await tools.call("blackpoint_status");
// Navigate to assets domain
await tools.call("blackpoint_navigate", { domain: "assets" });
// List endpoint assets
await tools.call("blackpoint_assets_list", {
class: "endpoint",
pageSize: 10
});
// Get specific asset details
await tools.call("blackpoint_assets_get", {
id: "asset_12345"
});
// Return to navigation
await tools.call("blackpoint_back");
| Domain | Tools | Description |
|---|---|---|
| tenants | list, get | Customer tenant management |
| assets | list, get, relationships, search | Asset inventory and relationships |
| detections | list, get | Security detections and telemetry |
| vulnerabilities | list, scans_list, darkweb_list, external_list | Vuln management, dark web, external exposure |
| Domain | Status | Notes |
|---|---|---|
| partners | SDK ready | Account management - ready to implement |
| alerts | Models only | API handlers not available in CompassOne wrapper |
| tickets | Models only | API handlers not available in CompassOne wrapper |
| cloud_security | SDK ready | M365/Google/Cisco onboarding - ready to implement |
| notifications | SDK ready | Contact groups and channels - ready to implement |
CompassOne uses hierarchical scoping: Partner → Tenants → Assets
tenantId parameters to avoid cross-tenant operationsThe server provides structured error responses:
{
"content": [{
"type": "text",
"text": "Failed to list assets: Authentication failed"
}],
"isError": true
}
Common error scenarios:
The underlying SDK implements automatic rate limiting:
Retry-After headers# Build
docker build -t blackpoint-mcp .
# Run in gateway mode
docker run -p 8080:8080 \
-e AUTH_MODE=gateway \
-e MCP_TRANSPORT=http \
-e MCP_HTTP_PORT=8080 \
blackpoint-mcp
# Install dependencies
npm install
# Run in development mode
npm run dev
# Build
npm run build
# Test
npm test
# Lint
npm run lint
The following operations require confirmation (when implemented):
These use the elicitConfirmation pattern to prevent accidental execution.
No tools showing:
BLACKPOINT_API_TOKEN is setGateway mode not working:
AUTH_MODE=gateway is setRate limiting:
export LOG_LEVEL=debug
blackpoint-mcp
# Test basic connectivity
curl -X POST http://localhost:8080/ \
-H "Content-Type: application/json" \
-H "X-Blackpoint-API-Token: your-token" \
-d '{"jsonrpc": "2.0", "method": "tools/list", "id": 1}'
git checkout -b feature-nameSee CONTRIBUTING.md for detailed guidelines.
Apache-2.0 - see LICENSE for details.
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.