Skip to main content
Glama
ogbm77

Cisco CX Cloud MCP Server

by ogbm77

get_security_advisories

Retrieve security advisories and recommendations for a specific customer to identify potential vulnerabilities and implement protective measures.

Instructions

Get security advisories for a specific customer. Returns security alerts and recommendations.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
customerIdYesThe customer ID

Implementation Reference

  • Handler for get_security_advisories tool: validates customerId, calls the /product-alerts/security-advisories API endpoint via makeApiCall, and returns the JSON response as text.
    case "get_security_advisories": {
      const customerId = args?.customerId as string;
      if (!customerId) {
        throw new Error("customerId is required");
      }
      const data = await makeApiCall("/product-alerts/security-advisories", customerId);
      return {
        content: [
          {
            type: "text",
            text: JSON.stringify(data, null, 2),
          },
        ],
      };
    }
  • Tool schema definition including name, description, and input schema requiring customerId.
    {
      name: "get_security_advisories",
      description: "Get security advisories for a specific customer. Returns security alerts and recommendations.",
      inputSchema: {
        type: "object",
        properties: {
          customerId: {
            type: "string",
            description: "The customer ID",
          },
        },
        required: ["customerId"],
      },
    },
  • src/index.ts:223-228 (registration)
    Registration of the tools list handler that exposes the get_security_advisories tool via ListTools.
    server.setRequestHandler(ListToolsRequestSchema, async () => {
      logger.debug('ListTools request received');
      return {
        tools,
      };
    });

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