Genesys Flow MCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Genesys Flow MCPGet the flow documentation for the 'testt call' IVR"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Genesys Flow MCP
Local MCP server that connects to Genesys Cloud, lists IVR routes, retrieves an IVR's configured open-hours flow, and produces readable Markdown documentation.
The generated document is structured for both business and technical readers:
Route — IVR name, ID, state, DNIS (when available), and configured flow.
Business Focus — the flow purpose and customer menu routing.
Technical Focus — flow settings, variables, prompts/TTS, tasks, menus, and decision paths.
Integrations and Routing Dependencies — Data Actions, Bot Flows, and ACD queues.
Prerequisites
Node.js 18 or later
A Genesys Cloud OAuth client using the Client Credentials grant
Permissions to read Architect IVRs and flows in the relevant Genesys Cloud organisation
Related MCP server: Hive Mind MCP Server
Install and configure
Install dependencies:
cd <path-to-genesys-flow-mcp>
npm installCreate a .env file in the project root:
GENESYS_CLIENT_ID=your-client-id
GENESYS_CLIENT_SECERET=your-client-secret
GENESYS_REGION=ieImportant:
GENESYS_CLIENT_SECERETis intentionally spelled this way because it matches the current source code. Do not rename it toSECRETunless you also updatesrc/config/env.ts.
Set GENESYS_REGION to your Genesys Cloud region suffix, for example ie for mypurecloud.ie.
Run locally
For development:
npm run devFor the compiled server used by desktop clients:
npm run build
npm startThe server uses the MCP stdio transport. It is started by the MCP client; it does not expose a browser URL or HTTP port.
Test with MCP Inspector
Use the MCP Inspector to test the server directly before connecting it to Claude Desktop:
cd <path-to-genesys-flow-mcp>
npm run inspectThe Inspector opens a local browser interface. In it:
Connect to the server using the default stdio configuration.
Open the Tools tab.
Run
get_ivrsto confirm Genesys authentication and route retrieval.Run
get_flow_by_namewith an IVR name, for example:{ "name": "testt call" }Check that the response starts with the Route section and includes the configured flow, prompts, and integrations.
Available tools
get_ivrs
Returns the Genesys Cloud routing/IVR list.
Example request:
List the available Genesys IVRs.get_flow_by_name
Looks up an IVR by name, retrieves its configured open-hours flow, and returns Markdown documentation.
Input:
{
"name": "testt call"
}Example request:
Use get_flow_by_name for the IVR named "testt call".If the IVR is not found, or it has no open-hours flow, the tool returns an error describing the problem.
What the generated documentation includes
The documentation follows the relationship below:
Genesys IVR Route
↓
Configured Open-Hours Flow
├── Business Focus: customer routing and menu choices
└── Technical Focus: prompts, variables, tasks, menus, integrationsIntegration detection covers the common Architect dependencies below:
Architect element | Documented as |
| Data Action / Web Services Data Action |
| Bot Flow, including name and flow ID |
| ACD Queue |
All TTS prompts found in tasks and menu greetings are included in the technical flow walk.
Test with Claude Desktop
Build the project:
cd <path-to-genesys-flow-mcp> npm run buildIn Claude Desktop, open:
File → Settings → Developer → Edit ConfigAdd the following at the top level of the opened JSON file. Preserve any existing settings such as
preferences.{ "mcpServers": { "genesys-flow": { "command": "node", "args": [ "<path-to-genesys-flow-mcp>\\dist\\index.js" ], "env": { "GENESYS_CLIENT_ID": "your-client-id", "GENESYS_CLIENT_SECERET": "your-client-secret", "GENESYS_REGION": "ie" } } } }Replace
<path-to-genesys-flow-mcp>with the full path to your local project folder. If the file already contains properties, addmcpServersalongside them and ensure the preceding property ends with a comma.Fully quit and reopen Claude Desktop.
Start a new chat and ask:
What Genesys tools are available?Then test the documentation:
Use get_flow_by_name for the IVR named "testt call" and document its route, configured flow, prompts, and integrations.
Do not commit or share the Claude Desktop config if it contains your client secret. For a local test on a personal device, passing the credentials through the MCP env block is acceptable. Use a dedicated OAuth client with the minimum required Genesys permissions.
Build check
Run the TypeScript build check after code changes:
npm run buildProject structure
src/
├── config/ Environment variable validation
├── mcp/ MCP server and tool registration
├── services/ Genesys authentication, API access, and documentation generation
├── tools/ MCP tool handlers
└── types/ Genesys Cloud response typesMaintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Related MCP Servers
- -licenseBqualityNot gradedmaintenanceAutomates the creation of standardized documentation by extracting information from source files and applying templates, with integration capabilities for GitHub, Google Drive, and Perplexity AI.33
- AlicenseNot gradedqualityDmaintenanceAutomatically generates and maintains living documentation for codebases by creating hierarchical hivemind.md files and flowchart diagrams at every directory level, enabling AI navigation and real-time or retroactive documentation of code structure, requirements, and dependencies.MIT
- AlicenseAqualityCmaintenanceEnables AI assistants to navigate and query hierarchical documentation structures, supporting markdown files with YAML metadata and OpenAPI 3.x specifications. It features intelligent full-text search, metadata filtering, and a built-in web interface for both human and AI-driven documentation access.6MIT
- FlicenseNot gradedqualityCmaintenanceAutomatically generates comprehensive wiki documentation from any codebase, including Mermaid diagrams, source code citations, and automated quality checks.2
Related MCP Connectors
Generate AGENTS.md, AP2 compliance docs, checkout rules, debug playbook & MCP configs from any repo.
Fonto (FontoXML) documentation for AI tools. Converts DITA XML to Markdown on demand.
Give your AI agent a phone: place calls, navigate IVRs, wait on hold, get structured answers.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/m-7-m/genesys-flow-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server