jenkins-mcp-enterprise vs everything
Side-by-side comparison to help you pick between these two MCP servers.
jenkins-mcp-enterprise by Jordan-Jarvis | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 28 | ★ 85,748 |
| 30d uses | — | — |
| Score | 44 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsOps & InfraMonitoring | Developer ToolsAI / LLM ToolsOther |
| 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.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
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
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
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"]
}
}
}everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything