-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathserver.json
More file actions
57 lines (57 loc) · 1.87 KB
/
Copy pathserver.json
File metadata and controls
57 lines (57 loc) · 1.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.WYRE-AI/blackpoint-mcp",
"title": "Blackpoint Cyber",
"description": "MCP server for Blackpoint Cyber MDR \u2014 alerts, threats, and operations.",
"repository": {
"url": "https://github.com/WYRE-AI/blackpoint-mcp",
"source": "github"
},
"version": "0.0.0",
"websiteUrl": "https://github.com/WYRE-AI/blackpoint-mcp",
"packages": [
{
"registryType": "oci",
"identifier": "ghcr.io/wyre-ai/blackpoint-mcp:0.0.0",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "BLACKPOINT_API_TOKEN",
"description": "Blackpoint Cyber API token (Bearer credential)",
"isRequired": true,
"isSecret": true,
"format": "string"
},
{
"name": "BLACKPOINT_BASE_URL",
"description": "Blackpoint API base URL (region-specific). Optional \u2014 defaults to the production US endpoint.",
"isRequired": false,
"format": "string"
},
{
"name": "MCP_TRANSPORT",
"description": "Transport mode for the server. Set to 'stdio' for local CLI use; the image defaults to 'http' for gateway hosting.",
"isRequired": false,
"default": "stdio",
"format": "string"
},
{
"name": "AUTH_MODE",
"description": "Credential source: 'env' reads vars locally, 'gateway' expects header injection from the WYRE MCP Gateway.",
"isRequired": false,
"default": "env",
"format": "string"
},
{
"name": "LOG_LEVEL",
"description": "Log verbosity: debug, info, warn, error",
"isRequired": false,
"default": "info",
"format": "string"
}
]
}
]
}