Jenkins MCP Server
DevOpsstdiossev0.2.0
MCP server for Jenkins CI/CD. Enables AI agents to trigger builds, inspect job and build status, stream console logs, and diagnose failing pipelines, bringing continuous integration workflows into AI-powered development environments.
Connect
Add this configuration to .claude/mcp.json
Transport:
{
"mcpServers": {
"jenkins": {
"command": "npx",
"args": [],
"env": {
"JENKINS_URL": "<YOUR_JENKINS_URL>",
"JENKINS_USER": "<YOUR_JENKINS_USER>",
"JENKINS_API_TOKEN": "<YOUR_JENKINS_API_TOKEN>"
}
}
}
}Tools (2)
trigger_build
Trigger a build for a Jenkins job with optional parameters.
{
"type": "object",
"required": [
"job_name"
],
"properties": {
"job_name": {
"type": "string",
"description": "Name or path of the Jenkins job"
},
"parameters": {
"type": "object",
"description": "Build parameters as key/value pairs"
}
}
}get_build_log
Retrieve the console log for a specific build of a job.
{
"type": "object",
"required": [
"job_name"
],
"properties": {
"job_name": {
"type": "string",
"description": "Name or path of the Jenkins job"
},
"build_number": {
"type": "integer",
"description": "Build number (defaults to latest)"
}
}
}Resources
This server does not expose any resources.
Prompts
This server does not expose any prompts.
Server Information
- License
- MIT
- Version
- 0.2.0
- Stars
- 198
- Last Updated
- July 9, 2026