EOL MCP Server

by ducthinh993
Verified

check_version

Check EOL status and support information for software versions

Input Schema

NameRequiredDescriptionDefault
productYesSoftware product name (e.g., python, nodejs, ubuntu)
versionNoSpecific version to check (e.g., 3.8, 16, 20.04)

Input Schema (JSON Schema)

{ "properties": { "product": { "description": "Software product name (e.g., python, nodejs, ubuntu)", "examples": [ "python", "nodejs", "ubuntu" ], "type": "string" }, "version": { "description": "Specific version to check (e.g., 3.8, 16, 20.04)", "examples": [ "3.8", "16", "20.04" ], "type": "string" } }, "required": [ "product" ], "type": "object" }