jfrog_get_artifacts_summary
Retrieve summarized details of one or multiple artifacts from a repository using their full paths. Designed for quick artifact analysis and management on the JFrog MCP Server.
Instructions
Get the summary of artifacts, one or many
Input Schema
Name | Required | Description | Default |
---|---|---|---|
paths | Yes | List of full paths of the artifacts, the full path should include the repositotiry name |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"paths": {
"description": "List of full paths of the artifacts, the full path should include the repositotiry name",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"paths"
],
"type": "object"
}