loading…
Search for a command to run...
loading…
Enables interaction with Jenkins instances to manage jobs, builds, and nodes through the Model Context Protocol. It provides capabilities to trigger builds, rea
Enables interaction with Jenkins instances to manage jobs, builds, and nodes through the Model Context Protocol. It provides capabilities to trigger builds, read console outputs, and search log sections using regular expressions.
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.
npm install
The server uses these environment variables for authentication:
| Variable | Required | Description |
|---|---|---|
JENKINS_USER |
Yes | Your Jenkins username |
JENKINS_TOKEN |
Yes | Your Jenkins API token |
JENKINS_URL |
No | Jenkins base URL (default: https://jenkins.scylladb.com) |
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.
https://jenkins.scylladb.com/user/<your-username>/configure)claude-code-mcp), and click GenerateTest that your credentials work:
curl -u "your-username:your-api-token" https://jenkins.scylladb.com/api/json?tree=mode
You should see {"mode":"NORMAL"} (or similar). If you get a 401/403, double-check your username and token.
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"
}
}
}
}
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.
Add the server to your OpenCode MCP configuration. Edit (or create) the file ~/.config/opencode/opencode.json:
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"ScyllaDB Jenkins": {
"type": "local",
"command": [
"node",
"/path/to/jenkins-mcp/server.js"
],
"environment": {
"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.
JENKINS_USER=your-username JENKINS_TOKEN=your-api-token node server.js
The 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.
npm run lint
Uses ESLint 9 with flat config (eslint.config.js).
GitHub Actions runs on every push and PR to main:
npx eslint . with Node 20The Jenkins folder scylla-master/driver-tests contains CI jobs that test ScyllaDB compatibility with various CQL client drivers.
Each driver test job:
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).
| Tool | Description |
|---|---|
list_jobs |
List jobs in a folder |
get_job_info |
Get detailed job info including parameters |
get_build_info |
Get info about a specific build |
get_console_output |
Get build console output (with optional tail) |
get_build_log_section |
Search console output with regex and context |
list_builds |
List recent builds for a job |
trigger_build |
Trigger a new build |
stop_build |
Abort a running build |
get_queue |
View the build queue |
list_views |
List Jenkins views |
get_view_jobs |
List jobs in a view |
search_jobs |
Search for jobs by name |
get_nodes |
List build nodes/agents |
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"jenkins-mcp-server": {
"command": "npx",
"args": []
}
}
}