get_software_eol
Retrieve software end-of-life information for Cisco customers to identify which versions are approaching end-of-life and plan upgrades accordingly.
Instructions
Get software end-of-life information for a specific customer. Shows which software versions are reaching end-of-life.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| customerId | Yes | The customer ID |
Implementation Reference
- src/index.ts:363-377 (handler)Handler case for get_software_eol tool: validates customerId argument, fetches software EOL data from Cisco CX Cloud API endpoint "/product-alerts/software-eol", and returns formatted JSON response.case "get_software_eol": { const customerId = args?.customerId as string; if (!customerId) { throw new Error("customerId is required"); } const data = await makeApiCall("/product-alerts/software-eol", customerId); return { content: [ { type: "text", text: JSON.stringify(data, null, 2), }, ], }; }
- src/index.ts:192-205 (registration)Tool registration in the tools list: defines name, description, and input schema (requiring customerId) for get_software_eol.{ name: "get_software_eol", description: "Get software end-of-life information for a specific customer. Shows which software versions are reaching end-of-life.", inputSchema: { type: "object", properties: { customerId: { type: "string", description: "The customer ID", }, }, required: ["customerId"], }, },
- src/index.ts:195-204 (schema)Input schema for get_software_eol tool: object with required 'customerId' string property.inputSchema: { type: "object", properties: { customerId: { type: "string", description: "The customer ID", }, }, required: ["customerId"], },