trigger_build
Initiate a Jenkins CI/CD build by specifying the job path and optional parameters using this tool on the Jenkins Server MCP.
Instructions
Trigger a new Jenkins build
Input Schema
Name | Required | Description | Default |
---|---|---|---|
jobPath | Yes | Path to the Jenkins job | |
parameters | Yes | Build parameters (optional) |
Input Schema (JSON Schema)
{
"properties": {
"jobPath": {
"description": "Path to the Jenkins job",
"type": "string"
},
"parameters": {
"additionalProperties": true,
"description": "Build parameters (optional)",
"type": "object"
}
},
"required": [
"jobPath",
"parameters"
],
"type": "object"
}