jenkins-mcp-enterprise vs sequentialthinking
并排对比,帮你在这两个 MCP server 之间做选择。
jenkins-mcp-enterprise by Jordan-Jarvis | sequentialthinking by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 28 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 44 | 75 |
| 官方 | — | ✓ |
| 分类 | 开发者工具运维基建可观测性 | AI / LLM 工具开发者工具效率工具 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 本月 | 本月 |
jenkins-mcp-enterprise · 概述
高级 Jenkins MCP 服务器,提供企业级多实例管理和 AI 驱动的构建诊断功能。
sequentialthinking · 概述
Sequential Thinking MCP 服务器通过逐步推理支持动态问题解决。
jenkins-mcp-enterprise · 使用场景
- 使用 AI 驱动的分析诊断跨多个 Jenkins 实例的复杂构建失败
- 在启用向量搜索时,通过语义搜索搜索和分析构建中的日志
- 通过统一界面管理不同 Jenkins 实例中的作业和配置
sequentialthinking · 使用场景
- 规划复杂系统迁移并进行风险评估
- 需要逐步分析的调试生产环境问题
- 比较具有条件分支的架构选项
jenkins-mcp-enterprise · 安装
安装
先决条件
- Python 3.10+
- Jenkins API 访问权限
- Jenkins 用户名和 API 令牌
- Docker 和 Docker Compose(如需容器部署)
- Qdrant(如需
semantic_search功能)
从源代码安装
git clone https://github.com/Jordan-Jarvis/jenkins-mcp-enterprise
cd jenkins-mcp-enterprise
python3 -m pip install -e .Docker 和 Compose
cp config/mcp-config.example.yml config/mcp-config.yml
./start-jenkins_mcp_enterprise.sh启动服务器
jenkins_mcp_enterprise --config config/mcp-config.ymlClaude Desktop 配置
添加到 ~/.claude_desktop_config.json:
{
"mcpServers": {
"jenkins": {
"command": "jenkins_mcp_enterprise",
"args": ["--config", "config/mcp-config.yml"]
}
}
}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"
]
}
}
}