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.

Подключение

Добавьте эту конфигурацию в .claude/mcp.json

Подключение:
{
  "mcpServers": {
    "jenkins": {
      "command": "npx",
      "args": [],
      "env": {
        "JENKINS_URL": "<YOUR_JENKINS_URL>",
        "JENKINS_USER": "<YOUR_JENKINS_USER>",
        "JENKINS_API_TOKEN": "<YOUR_JENKINS_API_TOKEN>"
      }
    }
  }
}

Инструменты (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)"
    }
  }
}

Ресурсы

Этот сервер не предоставляет ресурсы.

Промпты

Этот сервер не предоставляет промпты.

Сведения о сервере

Автор
Jenkins Community (@jenkinsci)
Репозиторий
https://github.com/jenkinsci/mcp-server-plugin
Лицензия
MIT
Версия
0.2.0
Звёзды
198
Последнее обновление
9 июля 2026 г.
Jenkins MCP Server - MCP Server | OpenModels