Provides a comprehensive set of tools for interacting with a Jenkins server, including listing jobs and views, retrieving detailed build information, reading console logs, and triggering or stopping builds.
Facilitates the management and monitoring of ScyllaDB's CI infrastructure, particularly focused on driver compatibility tests and build statuses within the ScyllaDB Jenkins environment.
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 MCP Servershow the console output for the latest build of cpp-driver-matrix-test"
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 Server
MCP (Model Context Protocol) server for interacting with Jenkins at jenkins.scylladb.com. Provides tools for listing jobs, viewing builds, reading console output, triggering builds, and more.
Setup
Prerequisites
npm installCredentials
The server uses these environment variables for authentication:
Variable | Required | Description |
| Yes | Your Jenkins username |
| Yes | Your Jenkins API token |
| No | Jenkins base URL (default: |
Step 1: Get your Jenkins username
Your Jenkins username is the same as your ScyllaDB LDAP / SSO username. You can verify it by logging in to https://jenkins.scylladb.com and checking the name shown in the top-right corner.
Step 2: Generate an API token
Log in to https://jenkins.scylladb.com
Click your name in the top-right corner → Configure (or go directly to
https://jenkins.scylladb.com/user/<your-username>/configure)Scroll down to the API Token section
Click Add new Token, give it a descriptive name (e.g.
claude-code-mcp), and click GenerateCopy the token immediately — it is shown only once
Step 3: Verify access
Test that your credentials work:
curl -u "your-username:your-api-token" https://jenkins.scylladb.com/api/json?tree=modeYou should see {"mode":"NORMAL"} (or similar). If you get a 401/403, double-check your username and token.
Adding to Claude Code
Add the server to your Claude Code MCP configuration. Edit (or create) the file ~/.claude/settings.json:
{
"mcpServers": {
"jenkins": {
"command": "node",
"args": ["/path/to/jenkins-mcp/server.js"],
"env": {
"JENKINS_USER": "your-username",
"JENKINS_TOKEN": "your-api-token"
}
}
}
}Replace /path/to/jenkins-mcp/server.js with the absolute path to server.js, and fill in your credentials. JENKINS_URL defaults to https://jenkins.scylladb.com and can be omitted.
You can also configure it at the project level by creating a .mcp.json file in the project root (this format is shared with OpenAI Codex):
{
"mcpServers": {
"jenkins": {
"command": "node",
"args": ["./server.js"],
"env": {
"JENKINS_USER": "your-username",
"JENKINS_TOKEN": "your-api-token"
}
}
}
}Adding to OpenAI Codex
Codex uses the same .mcp.json project-level configuration as Claude Code (see above). Place the .mcp.json file in the project root and Codex will pick it up automatically.
Running Standalone (for testing)
JENKINS_USER=your-username JENKINS_TOKEN=your-api-token node server.jsThe server communicates over stdio using the MCP protocol — it is not meant to be used directly from a terminal, but this verifies it starts without errors.
Development
Linting
npm run lintUses ESLint 9 with flat config (eslint.config.js).
CI/CD
GitHub Actions runs on every push and PR to main:
Lint —
npx eslint .with Node 20
Driver Tests Overview
The Jenkins folder scylla-master/driver-tests contains CI jobs that test ScyllaDB compatibility with various CQL client drivers.
How Driver Tests Work
Each driver test job:
Spins up a ScyllaDB cluster (typically via CCM)
Runs the driver's test suite against it across multiple driver versions and protocol versions
Reports results to Argus
The test infrastructure for each driver lives in a driver-matrix repo. These repos contain the configuration (which driver versions to test, which tests to run, version-specific workarounds, etc.). The actual driver source code lives in separate driver repos — ScyllaDB forks of upstream drivers (or ScyllaDB-native drivers in the case of Rust).
Job → Repository Mapping
Jenkins Job | Driver Matrix Repo (test infra) | ScyllaDB Driver Repo (fork) | Upstream Driver Repo |
N/A (ScyllaDB-native) |
Where to File Issues
Test infrastructure issues (flaky tests, missing versions, matrix config problems) → file in the driver-matrix repo
Driver bugs (incorrect behavior, crashes, protocol issues) → file in the driver repo
ScyllaDB server bugs (discovered via driver tests) → file in scylladb/scylladb
Available MCP Tools
Tool | Description |
| List jobs in a folder |
| Get detailed job info including parameters |
| Get info about a specific build |
| Get build console output (with optional tail) |
| Search console output with regex and context |
| List recent builds for a job |
| Trigger a new build |
| Abort a running build |
| View the build queue |
| List Jenkins views |
| List jobs in a view |
| Search for jobs by name |
| List build nodes/agents |
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.