scanrail 0.1.1 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -0
- package/package.json +5 -3
package/README.md
CHANGED
|
@@ -30,6 +30,16 @@ scanrail run --only headers
|
|
|
30
30
|
|
|
31
31
|
The first release includes the CLI scaffold, config generation, workspace setup, JSON/HTML reporting, and a native security headers scanner. Docker-backed adapters for Gitleaks, Trivy, and Semgrep are planned next.
|
|
32
32
|
|
|
33
|
+
## MCP
|
|
34
|
+
|
|
35
|
+
Scanrail includes a local stdio MCP server for AI clients:
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
scanrail mcp serve
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
The MCP MVP exposes bounded tools for `doctor`, config reading, latest report summaries, and the native headers scan with explicit active-scan confirmation.
|
|
42
|
+
|
|
33
43
|
## Package Layout
|
|
34
44
|
|
|
35
45
|
`scanrail` is the recommended npm entrypoint. It depends on `@scanrail/cli`, which installs one optional platform package:
|
|
@@ -46,6 +56,7 @@ The first release includes the CLI scaffold, config generation, workspace setup,
|
|
|
46
56
|
- Repository: https://github.com/raeseoklee/scanrail
|
|
47
57
|
- Documentation: https://github.com/raeseoklee/scanrail#readme
|
|
48
58
|
- Issues: https://github.com/raeseoklee/scanrail/issues
|
|
59
|
+
- Security: https://github.com/raeseoklee/scanrail/blob/main/SECURITY.md
|
|
49
60
|
|
|
50
61
|
## License
|
|
51
62
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "scanrail",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Developer-first security scan orchestrator",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"README.md"
|
|
21
21
|
],
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@scanrail/cli": "0.1.
|
|
23
|
+
"@scanrail/cli": "0.1.3"
|
|
24
24
|
},
|
|
25
25
|
"publishConfig": {
|
|
26
26
|
"access": "public"
|
|
@@ -35,6 +35,8 @@
|
|
|
35
35
|
"trivy",
|
|
36
36
|
"gitleaks",
|
|
37
37
|
"owasp",
|
|
38
|
-
"cli"
|
|
38
|
+
"cli",
|
|
39
|
+
"mcp",
|
|
40
|
+
"model-context-protocol"
|
|
39
41
|
]
|
|
40
42
|
}
|