LitterBox vs everything
Side-by-side comparison to help you pick between these two MCP servers.
LitterBox by BlackSnufkin | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 1,422 | ★ 85,748 |
| 30d uses | — | — |
| Score | 53 | 77 |
| Official | — | ✓ |
| Categories | SecurityDeveloper ToolsAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | YARA | TypeScript |
| Last commit | this month | this month |
LitterBox · Summary
Red team payload sandbox with EDR integration and MCP tools for automated analysis.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
LitterBox · Use cases
- Red teams testing payloads against EDR detection systems
- Malware analysts evaluating detection bypass techniques
- Security researchers developing and testing YARA rules
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
LitterBox · Install
Installation
**Windows:**
git clone https://github.com/BlackSnufkin/LitterBox.git
cd LitterBox
python -m venv venv
.\venv\Scripts\Activate.ps1
pip install -r requirements.txt
python litterbox.py**Linux (Docker):**
git clone https://github.com/BlackSnufkin/LitterBox.git
cd LitterBox/Docker
chmod +x setup.sh
./setup.sh**MCP Configuration:** Add to Claude Desktop configuration:
{
"mcpServers": {
"litterbox": {
"command": "python",
"args": ["/path/to/LitterBox/litterbox.py"],
"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