by makingchatbots
Genesys Cloud connects call center analytics and routing data for advanced contact center analytics, offering deep busin
Connects to Genesys Cloud contact center platform to query analytics data, conversation metrics, and call quality information through conversational AI.
Genesys Cloud is a community-built MCP server published by makingchatbots that provides AI assistants with tools and capabilities via the Model Context Protocol. Genesys Cloud connects call center analytics and routing data for advanced contact center analytics, offering deep busin It is categorized under cloud infrastructure, analytics data.
You can install Genesys Cloud in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
MIT
Genesys Cloud is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
Genesys Cloud reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
Genesys Cloud is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
Useful MCP listing: Genesys Cloud is the kind of server we cite when onboarding engineers to host + tool permissions.
We evaluated Genesys Cloud against two servers with overlapping tools; this profile had the clearer scope statement.
Strong directory entry: Genesys Cloud surfaces stars and publisher context so we could sanity-check maintenance before adopting.
I recommend Genesys Cloud for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
Genesys Cloud reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
Genesys Cloud is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
I recommend Genesys Cloud for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
Genesys Cloud is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
showing 1-10 of 62
A Model Context Protocol (MCP) server for Genesys Cloud's Platform API.
| Tool | Description |
|---|---|
| Search Queues | Searches for queues by their name (supports wildcards) |
| Query Queue Volumes | Retrieves conversation volumes and member count by Queue IDs |
| Sample Conversations By Queue | Retrieves a representative sample of Conversation IDs for a Queue ID |
| Voice Call Quality | Retrieves voice call quality metrics for one or more conversations by ID |
| Conversation Sentiment | Retrieves the sentiment for one or more conversations by ID |
| Conversation Topics | Retrieves the topics for a conversation by ID |
| Search Voice Conversation | Searches voice conversations by optional criteria |
| Conversation Transcript | Retrieves conversation transcript |
| OAuth Clients | Retrieves a list of all the OAuth clients |
| OAuth Client Usage | Retrieves OAuth client usage for given period |
This MCP Server provides an MCP Bundle (.mcpb file) along with each release, which is a single-click installable package for Claude Desktop. To use it:
.mcpb file from the latest releaseThe extension will now be available in your conversations.
Add this to your claude_desktop_config.json:
{
"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>"
}
}
}
}
Add below to your .gemini/settings.json file. You can read more about the setup from the official guide.
{
"mcpServers": {
"genesysCloud": {
"command": "npx",
"args": ["-y", "@makingchatbots/genesys-cloud-mcp-server"],
"env": {
"GENESYSCLOUD_REGION": "${GENESYSCLOUD_REGION}",
"GENESYSCLOUD_OAUTHCLIENT_ID": "${GENESYSCLOUD_OAUTHCLIENT_ID}",
"GENESYSCLOUD_OAUTHCLIENT_SECRET": "${GENESYSCLOUD_OAUTHCLIENT_SECRET}"
}
}
}
}
This currently only supports a stdio server. To configure authentication you'll need to:
GENESYSCLOUD_REGIONGENESYSCLOUD_OAUTHCLIENT_IDGENESYSCLOUD_OAUTHCLIENT_SECRETnvm use
npm install
npm run dev
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.
Prerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.