check_version_exists
Verify if a specific package version exists in a registry. Use for dependency validation, CI/CD checks, or ensuring version compatibility. Returns existence status with package details and timestamp.
Instructions
Check if a specific version exists. Use for dependency validation, CI/CD checks, or ensuring version compatibility. Returns whether the version exists with package details and timestamp.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
package_name | Yes | Name of the package to check | |
registry | Yes | Package registry/manager to check | |
version | Yes | Version to check for existence |
Input Schema (JSON Schema)
{
"properties": {
"package_name": {
"description": "Name of the package to check",
"type": "string"
},
"registry": {
"description": "Package registry/manager to check",
"enum": [
"npm",
"pypi",
"maven",
"nuget",
"rubygems",
"crates",
"go"
],
"type": "string"
},
"version": {
"description": "Version to check for existence",
"type": "string"
}
},
"required": [
"package_name",
"version",
"registry"
],
"type": "object"
}