jenkins-mcp
Allows inspection of builds, control of jobs, and management of pipeline configuration on a Jenkins CI server, including fetching build status, logs, test reports, triggering and stopping builds, and reading/updating job configuration.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@jenkins-mcpshow me the last 5 builds of the main branch"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
jenkins-mcp
A Model Context Protocol (MCP) server for Jenkins. Inspect builds, control jobs, and manage pipeline configuration — designed to pair with atlassian-mcp so you can ask "did the build pass?" alongside Jira and Bitbucket questions.
Tools
Inspection
Tool | Description |
| Status of a build by number, by SHA (auto-finds the build for a commit), or the latest. Includes Pipeline stage breakdown, parameters, changeset, and artifact URLs. |
| Console log for a build. Pass |
| Test report — failing test names, classes, and stack traces. Far more useful than grepping the console log when a build fails. |
| Recent builds for a job, with result + duration + commit. |
| Browse jobs at the root or inside a folder. |
| Items currently waiting in the build queue. |
Build control
Tool | Description |
| Trigger a new build, optionally with parameters. Returns a queue item URL to track progress. |
| Abort a running build by number. |
Job configuration
Tool | Description |
| Fetch a job's configuration as structured JSON — pipeline definition, triggers, parameters, and retention settings. |
| Patch a job's configuration. Pass only the fields to change; everything else is preserved. Supports description, pipeline script/path, triggers, parameters, and build retention. |
Natural-language examples
"did CI pass for this commit?" →
jenkins_get_buildwithsha=<HEAD>"why did build #42 fail?" →
jenkins_get_tests(failing tests + stack traces) orjenkins_get_logwithstageId=<id>for the failing Pipeline stage"show me the last 10 builds of master" →
jenkins_list_builds"what jobs exist under platform/api?" →
jenkins_list_jobswithfolder=platform/api"what's waiting in the queue?" →
jenkins_get_queue"trigger a build with ENV=production" →
jenkins_trigger_buildwithparameters"stop the current build" →
jenkins_stop_buildwithbuildNumber"add a nightly cron trigger to this job" →
jenkins_get_job_configthenjenkins_update_job_configwith updatedtriggers
Setup
1. Generate a Jenkins API token
In Jenkins, click your username (top-right) → Configure.
In the API Token section, click Add new token, give it a name, and click Generate.
Copy the token value — it is only shown once.
2. Create a config file
Create ~/.jenkins-mcp.json:
{
"$schema": "https://raw.githubusercontent.com/stubbedev/jenkins-mcp/master/jenkins-mcp.schema.json",
"url": "https://jenkins.example.com",
"username": "your-jenkins-login",
"token": "your-api-token",
"repoJobMap": {
"stubbedev/atlassian-mcp": "atlassian-mcp/master",
"kontainer/api": ["kontainer-api/master", "kontainer-api/PR-builds"]
}
}The $schema field is optional but enables editor autocomplete and validation.
repoJobMap keys are matched as case-insensitive substrings against the git remote URL of the current repo, so the server can resolve jobPath automatically when you call jenkins_get_build from inside a repo. Values can be a single job path or an array. Job paths use slashes for nested folders (e.g. folder/sub-folder/job-name).
Alternatively, use environment variables (or a .env file in this directory):
JENKINS_URL=https://jenkins.example.com
JENKINS_USERNAME=your-jenkins-login
JENKINS_TOKEN=your-api-tokenConfig is resolved in this order: --config <path> CLI arg → JENKINS_MCP_CONFIG env var → ~/.jenkins-mcp.json → .jenkins-mcp.json in cwd → environment variables.
3. Connect to your AI tool
No cloning or building required — point your tool at npx @stubbedev/jenkins-mcp@latest and it will install and run automatically.
Claude Code
claude mcp add jenkins -- npx -y @stubbedev/jenkins-mcp@latest --config ~/.jenkins-mcp.jsonCursor
Add to ~/.cursor/mcp.json (global) or .cursor/mcp.json (project-only):
{
"mcpServers": {
"jenkins": {
"command": "npx",
"args": ["-y", "@stubbedev/jenkins-mcp@latest", "--config", "/Users/you/.jenkins-mcp.json"]
}
}
}Windsurf
Add to ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"jenkins": {
"command": "npx",
"args": ["-y", "@stubbedev/jenkins-mcp@latest", "--config", "/Users/you/.jenkins-mcp.json"]
}
}
}Zed
Add to ~/.config/zed/settings.json:
{
"context_servers": {
"jenkins": {
"command": {
"path": "npx",
"args": ["-y", "@stubbedev/jenkins-mcp@latest", "--config", "/home/you/.jenkins-mcp.json"]
}
}
}
}OpenCode
Add to opencode.json in your project root (or ~/.config/opencode/opencode.json for global):
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"jenkins": {
"type": "local",
"command": ["npx", "-y", "@stubbedev/jenkins-mcp@latest", "--config", "/home/you/.jenkins-mcp.json"]
}
}
}Codex CLI
Add to ~/.codex/config.yaml:
mcpServers:
jenkins:
command: npx
args:
- -y
- @stubbedev/jenkins-mcp@latest
- --config
- /home/you/.jenkins-mcp.jsonAny other MCP-compatible tool
Most tools that support MCP accept the same JSON format. Use npx as the command with ["-y", "@stubbedev/jenkins-mcp@latest", "--config", "/path/to/config.json"] as the args.
Updating existing installs
If your MCP client is already configured and you want the newest package version:
npx clear-npx-cacheThen restart your MCP client.
Manual install (optional)
If you prefer to clone and run locally:
git clone git@github.com:stubbedev/jenkins-mcp.git
cd jenkins-mcp
npm install
npm run buildThen use node /path/to/jenkins-mcp/dist/index.js instead of the npx command in the configs above.
Notes
Authentication is HTTP Basic with
username:apitoken(Jenkins's standard mechanism).Write operations (
jenkins_trigger_build,jenkins_stop_build,jenkins_update_job_config) require the API token user to have the appropriate Jenkins permissions.CSRF crumb handling is automatic — API tokens bypass the crumb check on most Jenkins installations, but the server fetches and caches a crumb for installations that require it.
jenkins_get_buildwithshascans the last 30 builds of the job for a matchinglastBuiltRevision. IncreasescanLimitfor repos with many builds per commit.Pipeline stage breakdown comes from Jenkins's
wfapi(workflow plugin). Freestyle jobs don't expose it, and the tool falls back to summary fields only.Test reports come from the standard Jenkins JUnit / xUnit plugins. Jobs that don't publish results return a friendly 404 message.
Releases (Maintainers)
This package is published to npm as @stubbedev/jenkins-mcp.
Use semantic versioning for releases. Breaking tool-surface changes should bump the minor version while <1.0.0 (for example 0.0.x -> 0.1.0).
Automatic publish is configured in .github/workflows/publish.yml and runs when a new version tag is pushed.
Release flow:
# choose one: patch | minor | major
increment=patch
# bumps package.json + package-lock.json,
# creates a version commit, and creates a git tag (for example v0.1.17)
npm version "$increment"
# push commit and tag to GitHub
git push origin HEAD --follow-tagsGitHub Actions will publish the npm release from that pushed tag.
The workflow is configured for npm Trusted Publisher (OIDC), so no
NPM_TOKENsecret is required
Required npm setup (one-time):
In npm package settings, add this GitHub repo/workflow as a Trusted Publisher
Development
# Watch mode — recompiles on file changes
npm run dev
# Run the built server directly
node dist/index.js
# Test the tool list
echo '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}' | node dist/index.js
# Quick release smoke check
npm run smokeTo use a specific config file:
node dist/index.js --config /path/to/config.jsonThis server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/stubbedev/jenkins-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server