Skip to main content
Glama
ogbm77

Cisco CX Cloud MCP Server

by ogbm77

get_field_notices

Retrieve important product notifications and bulletins for a specific customer to stay informed about critical updates and advisories.

Instructions

Get field notices for a specific customer. Returns important product notifications and bulletins.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
customerIdYesThe customer ID

Implementation Reference

  • Handler for the get_field_notices tool: validates customerId input, calls makeApiCall to the /product-alerts/field-notices endpoint, and returns JSON-formatted response as text content.
    case "get_field_notices": {
      const customerId = args?.customerId as string;
      if (!customerId) {
        throw new Error("customerId is required");
      }
      const data = await makeApiCall("/product-alerts/field-notices", customerId);
      return {
        content: [
          {
            type: "text",
            text: JSON.stringify(data, null, 2),
          },
        ],
      };
    }
  • src/index.ts:164-177 (registration)
    Registration of the get_field_notices tool in the tools array used for ListTools, including name, description, and input schema requiring customerId.
    {
      name: "get_field_notices",
      description: "Get field notices for a specific customer. Returns important product notifications and bulletins.",
      inputSchema: {
        type: "object",
        properties: {
          customerId: {
            type: "string",
            description: "The customer ID",
          },
        },
        required: ["customerId"],
      },
    },
  • Input schema for get_field_notices tool, defining customerId as required string.
    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