Description

MCP for Security is a collection of server implementations that bridge popular security tools (Nmap, Masscan, SQLMap, and FFUF) with AI assistants through the MCP protocol. Developed by Cyprox, these TypeScript-based servers enable AI systems to execute network scanning, port discovery, SQL injection testing, and web fuzzing operations by spawning the respective security tools and capturing their output. Each implementation follows a consistent pattern of accepting tool-specific parameters, executing the underlying binary with appropriate arguments, and returning results in a standardized format, making them particularly valuable for security professionals who want to leverage AI assistants for penetration testing, vulnerability assessment, and security auditing tasks.

Installation

git clone https://github.com/cyproxio/mcp-for-security

Claude Desktop Configuration

Add this configuration to your Claude Desktop config file to enable this MCP server:

Config file location: ~/Library/Application Support/Claude/claude_desktop_config.json

Config file location: %APPDATA%\Claude\claude_desktop_config.json

Config file location: ~/.config/Claude/claude_desktop_config.json

claude_desktop_config.json
{
  "mcpServers": {
    "security-tools-bridge": {
      "command": "node",
      "args": [
        "path/to/server.js"
      ]
    }
  }
}