sequentialthinking vs ExternalAttacker-MCP
并排对比,帮你在这两个 MCP server 之间做选择。
sequentialthinking by modelcontextprotocol | ExternalAttacker-MCP by MorDavid | |
|---|---|---|
| Stars | ★ 85,748 | ★ 76 |
| 30天用量 | — | — |
| 综合分 | 75 | 39 |
| 官方 | ✓ | — |
| 分类 | AI / LLM 工具开发者工具效率工具 | 安全开发者工具 |
| 实现语言 | TypeScript | Python |
| 最近提交 | 本月 | 14 个月前 |
sequentialthinking · 概述
Sequential Thinking MCP 服务器通过逐步推理支持动态问题解决。
ExternalAttacker-MCP · 概述
ExternalAttacker-MCP 通过模型上下文协议提供自动化攻击面映射工具,用于安全侦察。
sequentialthinking · 使用场景
- 规划复杂系统迁移并进行风险评估
- 需要逐步分析的调试生产环境问题
- 比较具有条件分支的架构选项
ExternalAttacker-MCP · 使用场景
- 安全团队自动化外部攻击面映射
- 使用自然语言查询进行漏洞赏金侦察
- 通过 AI 驱动的扫描工作流进行漏洞评估
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"
]
}
}
}ExternalAttacker-MCP · 安装
- 克隆仓库:
git clone https://github.com/mordavid/ExternalAttacker-MCP.git && cd ExternalAttacker - 安装 Python 依赖:
pip install -r requirements.txt - 安装所需的 Go 工具(subfinder、naabu、httpx、cdncheck、tlsx、ffuf、gobuster、dnsx)
- 运行应用程序:
python ExternalAttacker-App.py(通过 http://localhost:6991 访问) - 配置您的 MCP 客户端:
"mcpServers": {
"ExternalAttacker-MCP": {
"command": "python",
"args": [
"<您的路径>\\ExternalAttacker-MCP.py"
]
}
}```