jenkins-mcp-enterprise vs sequentialthinking
Side-by-side comparison to help you pick between these two MCP servers.
jenkins-mcp-enterprise by Jordan-Jarvis | sequentialthinking by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 28 | ★ 85,748 |
| 30d uses | — | — |
| Score | 44 | 75 |
| Official | — | ✓ |
| Categories | Developer ToolsOps & InfraMonitoring | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | this month | this month |
jenkins-mcp-enterprise · Summary
Advanced Jenkins MCP server with enterprise features for multi-instance management and AI-powered build diagnostics.
sequentialthinking · Summary
Sequential Thinking MCP Server enables dynamic problem-solving through step-by-step reasoning.
jenkins-mcp-enterprise · Use cases
- Diagnose complex build failures across multiple Jenkins instances with AI-powered analysis
- Search and analyze logs across builds using semantic search when vector search is enabled
- Manage and configure jobs across different Jenkins instances through a unified interface
sequentialthinking · Use cases
- Planning complex system migrations with risk assessment
- Debugging production issues requiring step-by-step analysis
- Comparing architecture options with conditional branching
jenkins-mcp-enterprise · Install
Installation
Prerequisites
- Python 3.10+
- Jenkins API access
- Jenkins username and API token
- Docker and Docker Compose if you want container deployment
- Qdrant if you want
semantic_search
Install from Source
git clone https://github.com/Jordan-Jarvis/jenkins-mcp-enterprise
cd jenkins-mcp-enterprise
python3 -m pip install -e .Docker and Compose
cp config/mcp-config.example.yml config/mcp-config.yml
./start-jenkins_mcp_enterprise.shStart the Server
jenkins_mcp_enterprise --config config/mcp-config.ymlClaude Desktop Configuration
Add to ~/.claude_desktop_config.json:
{
"mcpServers": {
"jenkins": {
"command": "jenkins_mcp_enterprise",
"args": ["--config", "config/mcp-config.yml"]
}
}
}sequentialthinking · Install
Installation
**Claude Desktop**: Add this to your claude_desktop_config.json:
{
"mcpServers": {
"sequential-thinking": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sequential-thinking"
]
}
}
}**VS Code**: Use one of the installation buttons or manually configure with:
{
"servers": {
"sequential-thinking": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sequential-thinking"
]
}
}
}**Docker**:
{
"mcpServers": {
"sequentialthinking": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"mcp/sequentialthinking"
]
}
}
}