jfrog_get_package_curation_status
Check the curation status of a specific package version (approved, blocked, or inconclusive) by specifying package type, name, and version on the JFrog MCP Server.
Instructions
Useful for checking the curation status of a specific package version. Returns one of the following statuses: approved, blocked, inconclusive.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
packageName | Yes | The name of the package, as it appears in the package repository. | |
packageType | Yes | The type of package. | |
packageVersion | Yes | The version of the package, as it appears in the package repository. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"packageName": {
"description": "The name of the package, as it appears in the package repository.",
"type": "string"
},
"packageType": {
"description": "The type of package.",
"enum": [
"pypi",
"npm",
"maven",
"golang",
"nuget",
"huggingface",
"rubygems"
],
"type": "string"
},
"packageVersion": {
"description": "The version of the package, as it appears in the package repository.",
"type": "string"
}
},
"required": [
"packageType",
"packageName",
"packageVersion"
],
"type": "object"
}