sequentialthinking vs cve-mcp-server
并排对比,帮你在这两个 MCP server 之间做选择。
sequentialthinking by modelcontextprotocol | cve-mcp-server by mukul975 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 566 |
| 30天用量 | — | — |
| 综合分 | 75 | 53 |
| 官方 | ✓ | — |
| 分类 | AI / LLM 工具开发者工具效率工具 | 安全开发者工具可观测性 |
| 实现语言 | TypeScript | Python |
| 最近提交 | 本月 | 本月 |
sequentialthinking · 概述
Sequential Thinking MCP 服务器通过逐步推理支持动态问题解决。
cve-mcp-server · 概述
高性能 MCP 服务器,为 Claude 提供 21 个 API 上的 27 个安全智能工具,用于 CVE 研究和威胁分析。
sequentialthinking · 使用场景
- 规划复杂系统迁移并进行风险评估
- 需要逐步分析的调试生产环境问题
- 比较具有条件分支的架构选项
cve-mcp-server · 使用场景
- 安全分析师对漏洞进行分类并优先级排序修补决策
- DevOps 团队扫描依赖项和 GitHub 漏洞通告
- 威胁猎人在威胁情报平台中调查 IP、域名和恶意软件哈希
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"
]
}
}
}cve-mcp-server · 安装
安装
前置要求
- Python 3.10+(推荐 3.11 或 3.12)
- pip 或 uv 包管理器
- Git 用于克隆仓库
- 可访问环境变量的终端
分步设置
# 1. 克隆仓库
git clone https://github.com/mukul975/cve-mcp-server.git
cd cve-mcp-server
# 2. 创建并激活虚拟环境
python -m venv venv
# macOS / Linux:
source venv/bin/activate
# Windows (PowerShell):
.\venv\Scripts\Activate.ps1
# 3. 安装依赖
pip install -e .
# 4. 复制并配置环境变量
cp .env.example .env
# 编辑 .env 文件添加您的 API 密钥Claude Desktop 配置
添加到 claude_desktop_config.json:
{
"mcpServers": {
"cve": {
"command": "python",
"args": ["-m", "cve_mcp_server"],
"env": {
"CVE_MCP_SERVER_API_KEYS": "YOUR_API_KEYS_HERE"
}
}
}
}