get_all_details
Retrieve detailed lifecycle information for all versions of a software product, including end-of-life dates, support status, and upgrade recommendations, using the EOL MCP Server.
Instructions
Get comprehensive lifecycle details for all versions of a product
Input Schema
Name | Required | Description | Default |
---|---|---|---|
product | Yes | Software product name (e.g., python, nodejs) |
Input Schema (JSON Schema)
{
"properties": {
"product": {
"description": "Software product name (e.g., python, nodejs)",
"examples": [
"python",
"nodejs"
],
"type": "string"
}
},
"required": [
"product"
],
"type": "object"
}