MCP Catalogs
Home

pentest-mcp-server vs everything

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

pentest-mcp-server
by LayeSec006
everything
by modelcontextprotocol
Stars★ 18★ 85,748
30d uses
Score4077
Official
Categories
SecurityDeveloper ToolsOps & Infra
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit7 mo agothis month

pentest-mcp-server · Summary

A production-ready MCP server that enables AI agents to perform autonomous penetration testing on Linux systems via SSH with persistent tmux sessions.

everything · Summary

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

pentest-mcp-server · Use cases

  • Automated red team operations with multi-step reconnaissance and exploitation
  • CTF challenge solving with interactive tools and long-running operations
  • Security research with persistent vulnerability assessment workflows

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

pentest-mcp-server · Install

Installation

  1. Clone and install the package:
git clone https://github.com/LayeSec006/pentest-mcp-server.git
cd pentest-mcp-server
pip install -e .
  1. Configure your target system:
cp .env.example .env
# Edit .env with your target system details
  1. Install tmux on the target system:
ssh kali@<TARGET_HOST>
sudo apt update && sudo apt install tmux  # For Debian/Ubuntu/Kali
sudo pacman -S tmux  # For Arch/BlackArch
sudo dnf install tmux  # For Fedora
exit
  1. Test the installation:
python -m pytest tests/ -v

Claude Desktop Integration

Add to your Claude Desktop configuration:

{
  "mcpServers": {
    "pentest-mcp": {
      "command": "python",
      "args": ["-m", "pentest_mcp_server"],
      "env": {
        "TARGET_HOST": "192.168.1.100",
        "TARGET_USER": "kali",
        "TARGET_PASSWORD": "your_password"
      }
    }
  }
}

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.