get_latest_version
Retrieve the latest stable version of a package from specified registries (npm, pypi, maven, etc.) for dependency updates or version checks. Returns package details including name, version, description, and timestamp.
Instructions
Get the latest version of a package. Use for dependency updates, version checks, or when you need the most recent stable release. Returns package name, latest version, description, and timestamp.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
package_name | Yes | Name of the package to check | |
registry | Yes | Package registry/manager to check |
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"
}
},
"required": [
"package_name",
"registry"
],
"type": "object"
}