Skip to main content
Glama
ogbm77

Cisco CX Cloud MCP Server

by ogbm77

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
NameRequiredDescriptionDefault
customerIdYesThe customer ID

Implementation Reference

  • 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"],
      },
    },
  • 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"],
    },

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/ogbm77/cisco-cx-cloud-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server