mcp-security-hub vs sequentialthinking
并排对比,帮你在这两个 MCP server 之间做选择。
mcp-security-hub by FuzzingLabs | sequentialthinking by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 548 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 54 | 75 |
| 官方 | — | ✓ |
| 分类 | 安全开发者工具运维基建 | AI / LLM 工具开发者工具效率工具 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 1 个月前 | 本月 |
mcp-security-hub · 概述
一个包含 38 个生产就绪 MCP 服务器的综合集合,用于 Nmap、Nuclei、SQLMap 等安全工具。
sequentialthinking · 概述
Sequential Thinking MCP 服务器通过逐步推理支持动态问题解决。
mcp-security-hub · 使用场景
- AI 助手对目标系统执行漏洞扫描
- 通过自然语言命令进行自动化安全评估
- 二进制分析和逆向工程用于恶意软件研究
sequentialthinking · 使用场景
- 规划复杂系统迁移并进行风险评估
- 需要逐步分析的调试生产环境问题
- 比较具有条件分支的架构选项
mcp-security-hub · 安装
安装步骤
- 克隆仓库:
git clone https://github.com/FuzzingLabs/mcp-security-hub
cd mcp-security-hub- 构建所有 MCP 服务器:
docker-compose build- 启动特定服务器:
docker-compose up nmap-mcp nuclei-mcp -d- 对于 Claude Desktop,添加到配置文件:
{
"mcpServers": {
"nmap": {
"command": "docker",
"args": ["run", "-i", "--rm", "--cap-add=NET_RAW", "nmap-mcp:latest"]
},
"nuclei": {
"command": "docker",
"args": ["run", "-i", "--rm", "nuclei-mcp:latest"]
}
}
}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"
]
}
}
}