-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 2.53 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@kryptosai/mcp-seatbelt",
"version": "0.7.1",
"description": "MCP runtime security proxy. Block dangerous AI agent tool calls with a policy engine, DLP, RBAC, threat intel, and audit trail. Detect attack chains, validate schemas, and enforce compliance.",
"main": "dist/index.js",
"bin": {
"mcp-seatbelt": "dist/index.js"
},
"files": [
"dist",
"templates",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/anomalyco/mcp-seatbelt.git"
},
"bugs": {
"url": "https://github.com/anomalyco/mcp-seatbelt/issues"
},
"homepage": "https://github.com/anomalyco/mcp-seatbelt",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "eslint src/ tests/",
"fuzz": "tsx src/index.ts fuzz",
"record": "tsx src/index.ts record",
"rbac:init": "tsx src/index.ts rbac-init",
"docker:build": "docker build -t ghcr.io/kryptosai/mcp-seatbelt:latest .",
"docker:push": "docker push ghcr.io/kryptosai/mcp-seatbelt:latest",
"prepublishOnly": "npm run build && npm test"
},
"keywords": [
"mcp",
"security",
"agent",
"ai",
"guardrails",
"proxy",
"runtime",
"model-context-protocol",
"mcp-security",
"mcp-proxy",
"mcp-guardrails",
"mcp-runtime",
"mcp-enforcement",
"runtime-security",
"security-proxy",
"tool-approval",
"ai-safety",
"zero-trust",
"supply-chain-security",
"threat-detection",
"attack-detection",
"dlp",
"owasp",
"rbac",
"compliance",
"audit-trail",
"session-capture",
"honeytokens",
"threat-intelligence",
"input-validation",
"schema-validation",
"mcp-scanner",
"policy-as-code"
],
"type": "module",
"license": "MIT",
"dependencies": {
"@xstate/fsm": "^2.1.0",
"ajv": "^8.20.0",
"casbin": "^5.51.1",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"express": "^4.21.0",
"http-proxy-middleware": "^3.0.0",
"js-yaml": "^4.1.0",
"json-schema-faker": "^0.6.2",
"xstate": "^5.32.5"
},
"devDependencies": {
"@modelcontextprotocol/server-filesystem": "^2026.7.10",
"@modelcontextprotocol/server-memory": "^2026.7.4",
"@types/express": "^4.17.21",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.0.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vitest": "^2.0.0"
},
"mcpName": "io.github.KryptosAI/mcp-seatbelt"
}