-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathserver.json
More file actions
45 lines (45 loc) · 1.55 KB
/
Copy pathserver.json
File metadata and controls
45 lines (45 loc) · 1.55 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.26zl/cybersec-toolkit",
"description": "Authorization-gated MCP server to discover and run 670+ security tools for CTF, pentest, and DFIR.",
"version": "1.2.1",
"repository": {
"url": "https://github.com/26zl/cybersec-toolkit",
"source": "github"
},
"packages": [
{
"registryType": "oci",
"identifier": "ghcr.io/26zl/cybersec-toolkit:1.2.1",
"transport": {
"type": "stdio"
},
"runtimeArguments": [
{ "type": "named", "name": "--entrypoint", "value": "uv" }
],
"packageArguments": [
{ "type": "positional", "value": "run" },
{ "type": "positional", "value": "--directory" },
{ "type": "positional", "value": "mcp_server" },
{ "type": "positional", "value": "fastmcp" },
{ "type": "positional", "value": "run" },
{ "type": "positional", "value": "server.py" },
{ "type": "positional", "value": "--transport" },
{ "type": "positional", "value": "stdio" },
{ "type": "positional", "value": "--no-banner" }
],
"environmentVariables": [
{
"name": "CYBERSEC_MCP_ALLOW_EXTERNAL",
"description": "Set to 1 only for explicitly authorized external scopes.",
"default": "0"
},
{
"name": "CYBERSEC_MCP_ALLOW_SCRIPTS",
"description": "Set to 1 to enable unsandboxed run_script execution.",
"default": "0"
}
]
}
]
}