Jenkins MCP
Provides tools for interacting with a Jenkins CI/CD server, including listing jobs, getting build details, fetching build logs, managing the queue, viewing nodes, and triggering builds.
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 MCPlist all jobs"
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
TypeScript MCP server that connects AI agents to Jenkins. Supports stdio and Streamable HTTP transports, plus a local web UI to test credential authentication/authorization and copy agent configuration snippets.
Developed by oshaani.com · © oshaani.com. All rights reserved.
Features
MCP tools for jobs, builds, logs, queue, nodes, identity, and auth checks
stdio mode for Cursor, Claude Desktop, VS Code
HTTP mode with Streamable MCP endpoint at
/mcpWeb UI to test Jenkins username/API token auth and permission probes
Ready-made config snippets for AI agents
Unit tests with Vitest
Related MCP server: Jenkins MCP Server
Quick start
npm install
npm run build
cp .env.example .env # then edit credentialsLocal Jenkins in Docker (recommended for testing)
docker compose up -d
# Wait until healthy, then copy the generated API token into .env:
docker exec jenkins-mcp-test cat /var/jenkins_home/mcp-api-token.txtDefault test login:
Field | Value |
URL | |
Username |
|
Password |
|
Sample job |
|
Put the token from mcp-api-token.txt into .env as JENKINS_API_TOKEN, then:
npm run start:httpOpen http://127.0.0.1:3100 and run Test authentication.
Stop Jenkins later with docker compose down (add -v to wipe data).
HTTP + UI
npm run start:httpOpen http://127.0.0.1:3100 to:
Test authentication and authorization against your Jenkins
Copy MCP config for Cursor / Claude Desktop / VS Code
Stdio (AI agents)
npm run start:stdioEnvironment
Variable | Description |
| Jenkins base URL |
| Jenkins username |
| Jenkins API token |
| HTTP port (default |
| Bind host (default |
|
|
Cursor MCP config (stdio)
{
"mcpServers": {
"jenkins": {
"command": "node",
"args": ["/absolute/path/to/Jenkins MCP/dist/index.js", "stdio"],
"env": {
"JENKINS_URL": "https://jenkins.example.com",
"JENKINS_USERNAME": "your-user",
"JENKINS_API_TOKEN": "your-api-token"
}
}
}
}Cursor MCP config (HTTP + headers)
Pass Jenkins credentials from the agent on every request:
{
"mcpServers": {
"jenkins": {
"url": "http://127.0.0.1:3100/mcp",
"headers": {
"X-Jenkins-Url": "http://127.0.0.1:8080",
"X-Jenkins-Username": "admin",
"X-Jenkins-Api-Token": "your-api-token"
}
}
}
}Header values override server .env for that MCP session. You can also use Authorization: Basic base64(username:apiToken) plus X-Jenkins-Url.
Cursor MCP config (HTTP + server env)
{
"mcpServers": {
"jenkins": {
"url": "http://127.0.0.1:3100/mcp"
}
}
}MCP tools
Tool | Description |
| Authenticated user identity |
| Auth + authorization permission probes |
| List visible jobs |
| Job details |
| Build details |
| Progressive console log |
| Build queue |
| Agents/nodes |
| Trigger build (disabled in read-only mode) |
Development
npm test
npm run typecheck
npm run devLicense
MIT
Copyright © oshaani.com. Developed by oshaani.com. All rights reserved.
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
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/Oshaani-AI/Jenkins-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server