Skip to main content
Glama
ogbm77

Cisco CX Cloud MCP Server

by ogbm77

get_customer_accounts

Retrieve accessible customer accounts and IDs from Cisco CX Cloud to enable subsequent operations like inventory queries and contract management.

Instructions

Get all accessible CX Cloud customer accounts and their IDs. Use this first to get customer IDs for other operations.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The switch case handler for the 'get_customer_accounts' tool. It calls makeApiCall to the '/customer-info/customer-details' endpoint and returns the JSON-formatted response as text content.
    case "get_customer_accounts": { const data = await makeApiCall("/customer-info/customer-details"); return { content: [ { type: "text", text: JSON.stringify(data, null, 2), }, ], }; }
  • src/index.ts:86-93 (registration)
    Registration of the 'get_customer_accounts' tool in the tools array provided to the listTools handler. Includes name, description, and empty input schema (no parameters required).
    { name: "get_customer_accounts", description: "Get all accessible CX Cloud customer accounts and their IDs. Use this first to get customer IDs for other operations.", inputSchema: { type: "object", properties: {}, }, },
  • Input schema for the 'get_customer_accounts' tool, defining an empty object (no input parameters required).
    inputSchema: { type: "object", properties: {}, },

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