pentester-mcp vs sequentialthinking
并排对比,帮你在这两个 MCP server 之间做选择。
pentester-mcp by halilkirazkaya | sequentialthinking by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 34 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 44 | 75 |
| 官方 | — | ✓ |
| 分类 | 安全开发者工具运维基建 | AI / LLM 工具开发者工具效率工具 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 2 个月前 | 本月 |
pentester-mcp · 概述
MCP服务器通过Docker沙箱安全集成200+渗透测试工具,赋能AI助手成为网络安全专家。
sequentialthinking · 概述
Sequential Thinking MCP 服务器通过逐步推理支持动态问题解决。
pentester-mcp · 使用场景
- AI驱动渗透测试,助手自主发现漏洞并执行适当工具
- 安全教育和培训,学习者通过AI交互观察道德黑客技术
- 红队行动,AI助手协助识别授权系统中的安全漏洞
sequentialthinking · 使用场景
- 规划复杂系统迁移并进行风险评估
- 需要逐步分析的调试生产环境问题
- 比较具有条件分支的架构选项
pentester-mcp · 安装
方法A:Docker沙箱(推荐且安全)
- 克隆仓库:
git clone https://github.com/halilkirazkaya/pentester-mcp.git
cd pentester-mcp- 选择工具(
configs/*.yaml):
打开configs/目录中的目标配置文件(如example-config.yaml),为您希望启用的任何工具设置true。
- 构建并运行沙箱:
docker compose up -d --build- 添加到Claude Desktop:
将此内容添加到您的claude_desktop_config.json文件中:
{
"mcpServers": {
"pentester_mcp": {
"command": "docker",
"args": [
"exec",
"-i",
"pentester-mcp",
"/app/.venv/bin/python",
"/app/server.py"
]
}
}
}方法B:本地执行(最快设置)
- 克隆并设置虚拟环境:
git clone https://github.com/halilkirazkaya/pentester-mcp.git
cd pentester-mcp
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt- 配置MCP客户端以使用您本地环境中的特定工具。
sequentialthinking · 安装
安装
**Claude Desktop**: 添加到您的 claude_desktop_config.json 文件中:
{
"mcpServers": {
"sequential-thinking": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sequential-thinking"
]
}
}
}**VS Code**: 使用安装按钮或手动配置:
{
"servers": {
"sequential-thinking": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sequential-thinking"
]
}
}
}**Docker**:
{
"mcpServers": {
"sequentialthinking": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"mcp/sequentialthinking"
]
}
}
}