Skip to main content
Glama
ogbm77

Cisco CX Cloud MCP Server

by ogbm77

get_hardware_eol

Retrieve hardware end-of-life information for a specific customer to identify equipment reaching end-of-life status.

Instructions

Get hardware end-of-life information for a specific customer. Shows which hardware is reaching end-of-life.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
customerIdYesThe customer ID

Implementation Reference

  • Handler for get_hardware_eol: validates customerId, calls API endpoint /product-alerts/hardware-eol, returns JSON data.
    case "get_hardware_eol": {
      const customerId = args?.customerId as string;
      if (!customerId) {
        throw new Error("customerId is required");
      }
      const data = await makeApiCall("/product-alerts/hardware-eol", customerId);
      return {
        content: [
          {
            type: "text",
            text: JSON.stringify(data, null, 2),
          },
        ],
      };
    }
  • src/index.ts:178-190 (registration)
    Tool registration in the tools list used by ListToolsRequestHandler, including name, description, and input schema.
    {
      name: "get_hardware_eol",
      description: "Get hardware end-of-life information for a specific customer. Shows which hardware is reaching end-of-life.",
      inputSchema: {
        type: "object",
        properties: {
          customerId: {
            type: "string",
            description: "The customer ID",
          },
        },
        required: ["customerId"],
      },
  • Input schema definition requiring 'customerId' string for the get_hardware_eol tool.
    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