compare_versions
Analyze software version differences and receive upgrade insights to assess compatibility, security status, and end-of-life recommendations for products like Python or Node.js.
Instructions
Compare versions and get detailed upgrade analysis
Input Schema
Name | Required | Description | Default |
---|---|---|---|
product | Yes | Software product name (e.g., python, nodejs) | |
version | Yes | Current version being used |
Input Schema (JSON Schema)
{
"properties": {
"product": {
"description": "Software product name (e.g., python, nodejs)",
"examples": [
"python",
"nodejs"
],
"type": "string"
},
"version": {
"description": "Current version being used",
"examples": [
"3.8",
"16"
],
"type": "string"
}
},
"required": [
"product",
"version"
],
"type": "object"
}