jfrog_get_permission_resource
Retrieve specific resource details within a permission target in the JFrog MCP Server. Input the permission target name and resource type (artifact, release_bundle, or build) to access precise information.
Instructions
Get details of a specific resource type within a permission target
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | The name of the permission target | |
resourceType | Yes | The type of resource to retrieve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"description": "The name of the permission target",
"type": "string"
},
"resourceType": {
"description": "The type of resource to retrieve",
"enum": [
"artifact",
"release_bundle",
"build"
],
"type": "string"
}
},
"required": [
"name",
"resourceType"
],
"type": "object"
}