mcp-security-hub vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp-security-hub by FuzzingLabs | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 548 | ★ 85,748 |
| 30d uses | — | — |
| Score | 54 | 77 |
| Official | — | ✓ |
| Categories | SecurityDeveloper ToolsOps & Infra | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 1 mo ago | this month |
mcp-security-hub · Summary
A comprehensive collection of 38 production-ready MCP servers for offensive security tools including Nmap, Nuclei, SQLMap, and more.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-security-hub · Use cases
- AI assistants performing vulnerability scans on target systems
- Automated security assessments through natural language commands
- Binary analysis and reverse engineering for malware research
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
mcp-security-hub · Install
Installation
- Clone the repository:
git clone https://github.com/FuzzingLabs/mcp-security-hub
cd mcp-security-hub- Build all MCP servers:
docker-compose build- Start specific servers:
docker-compose up nmap-mcp nuclei-mcp -d- For Claude Desktop, add to your config:
{
"mcpServers": {
"nmap": {
"command": "docker",
"args": ["run", "-i", "--rm", "--cap-add=NET_RAW", "nmap-mcp:latest"]
},
"nuclei": {
"command": "docker",
"args": ["run", "-i", "--rm", "nuclei-mcp:latest"]
}
}
}everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything