pentest-mcp-server vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
pentest-mcp-server by LayeSec006 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 18 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 40 | 77 |
| 官方 | — | ✓ |
| 分类 | 安全开发者工具运维基建 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 7 个月前 | 本月 |
pentest-mcp-server · 概述
一个生产就绪的 MCP 服务器,通过 SSH 和持久化 tmux 会话,使 AI 代理能够在 Linux 系统上执行自主渗透测试。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
pentest-mcp-server · 使用场景
- 使用多步侦察和漏洞利用的自动化红队操作
- 使用交互式工具和长时间运行的操作解决 CTF 挑战
- 持久化漏洞评估流程的安全研究
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
pentest-mcp-server · 安装
安装
- 克隆并安装包:
git clone https://github.com/LayeSec006/pentest-mcp-server.git
cd pentest-mcp-server
pip install -e .- 配置目标系统:
cp .env.example .env
# 编辑 .env 文件,添加您的目标系统详细信息- 在目标系统上安装 tmux:
ssh kali@<目标主机>
sudo apt update && sudo apt install tmux # 用于 Debian/Ubuntu/Kali
sudo pacman -S tmux # 用于 Arch/BlackArch
sudo dnf install tmux # 用于 Fedora
exit- 测试安装:
python -m pytest tests/ -vClaude Desktop 集成
添加到您的 Claude Desktop 配置中:
{
"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 · 安装
NPX(推荐)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}Windows 用户请使用 cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}全局安装
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything