everything vs ExternalAttacker-MCP
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | ExternalAttacker-MCP by MorDavid | |
|---|---|---|
| Stars | ★ 85,748 | ★ 76 |
| 30d uses | — | — |
| Score | 77 | 39 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | SecurityDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | 14 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
ExternalAttacker-MCP · Summary
ExternalAttacker-MCP provides automated attack surface mapping tools integrated through Model Context Protocol for security reconnaissance.
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
ExternalAttacker-MCP · Use cases
- Automated external attack surface mapping for security teams
- Bug bounty reconnaissance using natural language queries
- Vulnerability assessment through AI-powered scanning workflows
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-everythingExternalAttacker-MCP · Install
- Clone the repository:
git clone https://github.com/mordavid/ExternalAttacker-MCP.git && cd ExternalAttacker - Install Python dependencies:
pip install -r requirements.txt - Install required Go tools (subfinder, naabu, httpx, cdncheck, tlsx, ffuf, gobuster, dnsx)
- Run the application:
python ExternalAttacker-App.py(access at http://localhost:6991) - Configure your MCP client with:
"mcpServers": {
"ExternalAttacker-MCP": {
"command": "python",
"args": [
"<Your_Path>\\ExternalAttacker-MCP.py"
]
}
}```