🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

@makingchatbots/genesys-cloud-mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@makingchatbots/genesys-cloud-mcp-server

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

0.0.13
latest
Source
npm
Version published
Weekly downloads
125
16.82%
Maintainers
1
Weekly downloads
 
Created
Source

Genesys Cloud MCP Server

npm Follow me on LinkedIn for updates

A Model Context Protocol (MCP) server for Genesys Cloud's Platform API.

Features

ToolDescription
Search QueuesSearches for queues by their name (supports wildcards)
Query Queue VolumesRetrieves conversation volumes and member count by Queue IDs
Sample Conversations By QueueRetrieves a representative sample of Conversation IDs for a Queue ID
Voice Call QualityRetrieves voice call quality metrics for one or more conversations by ID
Conversation SentimentRetrieves the sentiment for one or more conversations by ID
Conversation TopicsRetrieves the topics for a conversation by ID
Search Voice ConversationSearches voice conversations by optional criteria
Conversation TranscriptRetrieves conversation transcript

Usage with Claude Desktop

Add this to your claude_desktop_config.json:

NPX

{
  "mcpServers": {
    "genesys-cloud": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@makingchatbots/genesys-cloud-mcp-server"],
      "env": {
        "GENESYSCLOUD_REGION": "<PUT REGION HERE>",
        "GENESYSCLOUD_OAUTHCLIENT_ID": "<PUT OAUTHCLIENT ID HERE>",
        "GENESYSCLOUD_OAUTHCLIENT_SECRET": "<PUT OAUTHCLIENT SECRET HERE>"
      }
    }
  }
}

Authentication

This currently only supports a stdio server. To configure authentication you'll need to:

  • Create an OAuth Client in Genesys Cloud
  • Assign the permissions to it for the tools you want to be used
  • Provide the following environment variables when referencing the server:
    • GENESYSCLOUD_REGION
    • GENESYSCLOUD_OAUTHCLIENT_ID
    • GENESYSCLOUD_OAUTHCLIENT_SECRET

Development

Getting Started

nvm use
npm install
npm run dev

Under active development

This is part of personal project to create a conversational Business Insights tool. It is a practical way for me to learn MCP servers, and how best to represent Genesys Cloud's Platform APIs in a way that can be easily consumed by LLMs.

There will be a lot of changes, and I will be sure to share my learnings in my newsletter.

Keywords

mcp

FAQs

Package last updated on 24 Jun 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts