-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.97 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.97 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
{
"name": "@datacline/secure-mcp-gateway",
"version": "1.0.0",
"description": "Enterprise-grade security gateway for Model Context Protocol servers with authentication, policy-based access control, tool filtering, and audit logging for AI agents and LLMs",
"keywords": [
"mcp",
"model-context-protocol",
"mcp-gateway",
"mcp-server",
"mcp-proxy",
"ai-gateway",
"ai-security",
"llm-security",
"claude-mcp",
"claude-desktop",
"ai-agents",
"llm-tools",
"authentication",
"oauth2",
"jwt",
"keycloak",
"policy-engine",
"access-control",
"rbac",
"audit-logging",
"compliance",
"enterprise-ai",
"multi-tenancy",
"tool-filtering",
"mcp-groups",
"stdio-to-http",
"spring-boot",
"golang",
"typescript",
"react",
"postgresql",
"docker",
"vscode-mcp",
"ai-compliance",
"policy-based-access-control",
"mcp-authentication",
"mcp-server-management",
"secure-ai",
"ai-tool-governance",
"soc2-compliance",
"gdpr-compliance"
],
"homepage": "https://github.com/datacline/secure-mcp-gateway#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/datacline/secure-mcp-gateway.git"
},
"bugs": {
"url": "https://github.com/datacline/secure-mcp-gateway/issues"
},
"author": "Datacline",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"start": "docker-compose up -d",
"stop": "docker-compose down",
"restart": "docker-compose restart",
"logs": "docker-compose logs -f",
"clean": "docker-compose down -v",
"build": "docker-compose build",
"test": "echo 'Run service-specific tests'",
"dev:frontend": "cd frontend && npm run dev",
"dev:gateway": "cd server-java && ./mvnw spring-boot:run",
"dev:policy": "cd policy-engine-go && go run main.go"
},
"workspaces": [
"frontend"
],
"private": false,
"publishConfig": {
"access": "public"
}
}