jfrog_get_specific_build
Retrieve detailed information for a specific build by name, with optional project scoping, using the JFrog MCP Server’s API capabilities.
Instructions
Get details for a specific build by name, optionally scoped to a project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
buildName | Yes | Name of the build to retrieve | |
project | No | Optional project key to scope the build search |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"buildName": {
"description": "Name of the build to retrieve",
"type": "string"
},
"project": {
"description": "Optional project key to scope the build search",
"type": "string"
}
},
"required": [
"buildName"
],
"type": "object"
}