awsome_kali_MCPServers vs everything
Side-by-side comparison to help you pick between these two MCP servers.
awsome_kali_MCPServers by ccq1 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 101 | ★ 85,748 |
| 30d uses | — | — |
| Score | 41 | 77 |
| Official | — | ✓ |
| Categories | SecurityDeveloper ToolsOps & Infra | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 6 mo ago | this month |
awsome_kali_MCPServers · Summary
Collection of MCP servers for Kali Linux providing security tools like Nmap, objdump, and Wireshark through Docker containers.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
awsome_kali_MCPServers · Use cases
- Security researchers performing network scans and traffic analysis through an MCP client
- Penetration testers analyzing binaries and extracting strings from suspicious files
- Developers automating security testing workflows by integrating Kali tools into their development process
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
awsome_kali_MCPServers · Install
Installation
- Build the Docker image:
docker build -t kali-mcps:latest .- Configure your MCP client (e.g., Claude Desktop) with:
{
"mcpServers": {
"kali-docker": {
"command": "docker",
"args": ["run", "-i", "kali-mcps: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