mcp-jenkins vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp-jenkins by lanbaoshen | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 120 | ★ 85,748 |
| 30d uses | — | — |
| Score | 47 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsOps & InfraProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | this month | this month |
mcp-jenkins · Summary
MCP server for Jenkins integration, providing tools to interact with Jenkins CI/CD through AI assistants.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-jenkins · Use cases
- AI assistant triggering Jenkins builds with custom parameters
- Automating Jenkins infrastructure management through natural language
- Retrieving build logs, artifacts, and test reports for analysis
- Monitoring Jenkins builds and queue status via AI 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
mcp-jenkins · Install
Installation
Using pip:
pip install mcp-jenkins
mcp-jenkinsUsing uv (recommended):
pip install uv
uvx mcp-jenkinsDocker:
docker pull ghcr.io/lanbaoshen/mcp-jenkins:latest
docker run -p 9887:9887 --rm ghcr.io/lanbaoshen/mcp-jenkins:latest --transport streamable-httpClaude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"jenkins": {
"command": "uvx",
"args": ["mcp-jenkins", "--jenkins-url=YOUR_JENKINS_URL", "--jenkins-username=YOUR_USERNAME", "--jenkins-password=YOUR_TOKEN"]
}
}
}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