@greenarmor/ges-mcp-server 0.1.0 → 0.2.1
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 +147 -0
- package/bundle/server.js +1361 -0
- package/dist/server.js +1 -1
- package/package.json +39 -20
- package/LICENSE +0 -21
- package/src/index.ts +0 -2
- package/src/server.ts +0 -257
- package/tsconfig.json +0 -12
- package/tsconfig.tsbuildinfo +0 -1
package/README.md
ADDED
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
# @greenarmor/ges-mcp-server
|
|
2
|
+
|
|
3
|
+
GESF MCP Server — AI Compliance Assistant for GDPR, OWASP, NIST, and CIS frameworks.
|
|
4
|
+
|
|
5
|
+
An [MCP (Model Context Protocol)](https://modelcontextprotocol.io/) server that provides compliance checking, policy generation, and risk assessment tools to any MCP-compatible AI code assistant.
|
|
6
|
+
|
|
7
|
+
## Tools
|
|
8
|
+
|
|
9
|
+
| Tool | Description |
|
|
10
|
+
|------|-------------|
|
|
11
|
+
| `check_compliance` | Check GDPR/OWASP compliance status for a project type |
|
|
12
|
+
| `list_missing_controls` | Show missing compliance controls for a framework |
|
|
13
|
+
| `generate_retention_policy` | Generate a data retention policy template |
|
|
14
|
+
| `generate_incident_response` | Generate an incident response plan template |
|
|
15
|
+
| `generate_risk_assessment` | Generate a risk assessment template |
|
|
16
|
+
| `generate_dpa` | Generate a Data Processing Agreement template |
|
|
17
|
+
|
|
18
|
+
## Installation
|
|
19
|
+
|
|
20
|
+
### VS Code / Copilot
|
|
21
|
+
|
|
22
|
+
Add to `.vscode/mcp.json` in your project:
|
|
23
|
+
|
|
24
|
+
```json
|
|
25
|
+
{
|
|
26
|
+
"servers": {
|
|
27
|
+
"gesf": {
|
|
28
|
+
"type": "stdio",
|
|
29
|
+
"command": "npx",
|
|
30
|
+
"args": ["-y", "@greenarmor/ges-mcp-server"]
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
Or use the one-click install link:
|
|
37
|
+
|
|
38
|
+
[Install in VS Code](vscode:mcp/install?%7B%22name%22%3A%22gesf%22%2C%22type%22%3A%22stdio%22%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22%40greenarmor%2Fges-mcp-server%22%5D%7D)
|
|
39
|
+
|
|
40
|
+
### Claude Desktop
|
|
41
|
+
|
|
42
|
+
Add to `~/Library/Application Support/Claude/claude_desktop_config.json`:
|
|
43
|
+
|
|
44
|
+
```json
|
|
45
|
+
{
|
|
46
|
+
"mcpServers": {
|
|
47
|
+
"gesf": {
|
|
48
|
+
"command": "npx",
|
|
49
|
+
"args": ["-y", "@greenarmor/ges-mcp-server"]
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
### Cursor
|
|
56
|
+
|
|
57
|
+
Add to `.cursor/mcp.json`:
|
|
58
|
+
|
|
59
|
+
```json
|
|
60
|
+
{
|
|
61
|
+
"mcpServers": {
|
|
62
|
+
"gesf": {
|
|
63
|
+
"command": "npx",
|
|
64
|
+
"args": ["-y", "@greenarmor/ges-mcp-server"]
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
### Windsurf
|
|
71
|
+
|
|
72
|
+
Add to `.windsurf/mcp.json`:
|
|
73
|
+
|
|
74
|
+
```json
|
|
75
|
+
{
|
|
76
|
+
"mcpServers": {
|
|
77
|
+
"gesf": {
|
|
78
|
+
"command": "npx",
|
|
79
|
+
"args": ["-y", "@greenarmor/ges-mcp-server"]
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
### OpenCode
|
|
86
|
+
|
|
87
|
+
Add to `opencode.json`:
|
|
88
|
+
|
|
89
|
+
```json
|
|
90
|
+
{
|
|
91
|
+
"mcp": {
|
|
92
|
+
"gesf": {
|
|
93
|
+
"command": "npx",
|
|
94
|
+
"args": ["-y", "@greenarmor/ges-mcp-server"],
|
|
95
|
+
"type": "stdio"
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
### Crush
|
|
102
|
+
|
|
103
|
+
Add to `~/.local/share/crush/crush.json`:
|
|
104
|
+
|
|
105
|
+
```json
|
|
106
|
+
{
|
|
107
|
+
"mcp": {
|
|
108
|
+
"gesf": {
|
|
109
|
+
"command": "npx",
|
|
110
|
+
"args": ["-y", "@greenarmor/ges-mcp-server"],
|
|
111
|
+
"type": "stdio"
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
```
|
|
116
|
+
|
|
117
|
+
### Smithery
|
|
118
|
+
|
|
119
|
+
```bash
|
|
120
|
+
npx smithery add @greenarmor/ges-mcp-server
|
|
121
|
+
```
|
|
122
|
+
|
|
123
|
+
### Global Install
|
|
124
|
+
|
|
125
|
+
```bash
|
|
126
|
+
npm install -g @greenarmor/ges-mcp-server
|
|
127
|
+
ges-mcp
|
|
128
|
+
```
|
|
129
|
+
|
|
130
|
+
## Example Prompts
|
|
131
|
+
|
|
132
|
+
Once connected, ask your AI assistant:
|
|
133
|
+
|
|
134
|
+
- "Are we GDPR compliant?"
|
|
135
|
+
- "Show missing OWASP controls"
|
|
136
|
+
- "Generate a retention policy for MyApp"
|
|
137
|
+
- "Generate an incident response plan"
|
|
138
|
+
- "Generate a risk assessment"
|
|
139
|
+
- "Generate a Data Processing Agreement"
|
|
140
|
+
|
|
141
|
+
## Requirements
|
|
142
|
+
|
|
143
|
+
- Node.js >= 22.0.0
|
|
144
|
+
|
|
145
|
+
## License
|
|
146
|
+
|
|
147
|
+
MIT
|