🚀 Socket Launch Week Day 4:Socket MCP Adds Org Alerts, Threat Feed Review, and Package Inspection.Learn more
Sign In

@greenarmor/ges-mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
45
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@greenarmor/ges-mcp-server

GESF MCP Server - AI Compliance Assistant for GDPR, OWASP, NIST, CIS. Check compliance, generate policies, assess risks via MCP protocol.

Source
npmnpm
Version
1.4.2
Version published
Weekly downloads
1.7K
-7.02%
Maintainers
1
Weekly downloads
 
Created
Source

@greenarmor/ges-mcp-server

GESF MCP Server — AI Compliance Assistant for GDPR, OWASP, NIST, and CIS frameworks.

An MCP (Model Context Protocol) server that provides compliance checking, policy generation, and risk assessment tools to any MCP-compatible AI code assistant.

Tools

ToolDescription
check_complianceCheck GDPR/OWASP compliance status for a project type
list_missing_controlsShow missing compliance controls for a framework
generate_retention_policyGenerate a data retention policy template
generate_incident_responseGenerate an incident response plan template
generate_risk_assessmentGenerate a risk assessment template
generate_dpaGenerate a Data Processing Agreement template

Installation

VS Code / Copilot

Add to .vscode/mcp.json in your project:

{
  "servers": {
    "gesf": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@greenarmor/ges-mcp-server"]
    }
  }
}

Or use the manual JSON configuration shown above.

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "gesf": {
      "command": "npx",
      "args": ["-y", "@greenarmor/ges-mcp-server"]
    }
  }
}

Cursor

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "gesf": {
      "command": "npx",
      "args": ["-y", "@greenarmor/ges-mcp-server"]
    }
  }
}

Windsurf

Add to .windsurf/mcp.json:

{
  "mcpServers": {
    "gesf": {
      "command": "npx",
      "args": ["-y", "@greenarmor/ges-mcp-server"]
    }
  }
}

OpenCode

Add to opencode.json:

{
  "mcp": {
    "gesf": {
      "command": "npx",
      "args": ["-y", "@greenarmor/ges-mcp-server"],
      "type": "stdio"
    }
  }
}

Crush

Add to ~/.local/share/crush/crush.json:

{
  "mcp": {
    "gesf": {
      "command": "npx",
      "args": ["-y", "@greenarmor/ges-mcp-server"],
      "type": "stdio"
    }
  }
}

Smithery

npx smithery add @greenarmor/ges-mcp-server

Global Install

npm install -g @greenarmor/ges-mcp-server
ges-mcp

Example Prompts

Once connected, ask your AI assistant:

  • "Are we GDPR compliant?"
  • "Show missing OWASP controls"
  • "Generate a retention policy for MyApp"
  • "Generate an incident response plan"
  • "Generate a risk assessment"
  • "Generate a Data Processing Agreement"

Requirements

  • Node.js >= 22.0.0

License

MIT

Keywords

ai

FAQs

Package last updated on 18 Jun 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts