MCP Catalogs
Home

nyxstrike vs everything

Side-by-side comparison to help you pick between these two MCP servers.

nyxstrike
by CommonHuman-Lab
everything
by modelcontextprotocol
Stars★ 96★ 85,748
30d uses
Score4777
Official
Categories
SecurityDeveloper ToolsAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last committhis monththis month

nyxstrike · Summary

AI-powered offensive security orchestration engine with MCP integration for automated penetration testing.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

nyxstrike · Use cases

  • Automated penetration testing with AI-driven attack chains
  • Security research using LLM-controlled offensive security tools
  • Red team exercises with AI-powered reconnaissance and exploitation

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

nyxstrike · Install

Installation

git clone https://github.com/CommonHuman-Lab/nyxstrike.git
cd nyxstrike

./nyxstrike.sh -a               # Setup + start server
./nyxstrike.sh -a -ai           # + local AI model (~8.4 GB RAM)
./nyxstrike.sh -a -ai-small     # + smaller AI model (~2.5 GB RAM)

Claude Desktop Configuration

{
  "$schema": "https://schemas claude.ai/desktop-config.json",
  "mcpServers": {
    "nyxstrike": {
      "command": [
        "/path/to/nyxstrike/nyxstrike-env/bin/python3",
        "/path/to/nyxstrike/nyxstrike_mcp.py",
        "--server",
        "http://127.0.0.1:8888",
        "--profile",
        "full"
      ],
      "env": {}
    }
  }
}

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
Comparison generated from public README + GitHub signals. Last updated automatically.