UNPKG

@makingchatbots/genesys-cloud-mcp-server

Version:

A Model Context Protocol (MCP) server exposing Genesys Cloud tools for LLMs, including sentiment analysis, conversation search, topic detection and more.

12 lines (11 loc) 234 B
export function errorResult(errorMessage) { return { isError: true, content: [ { type: "text", text: JSON.stringify({ errorMessage }), }, ], }; }