Skip to main content
Glama
m-7-m

Genesys Flow MCP

by m-7-m

Genesys Flow MCP

로컬 MCP 서버로, Genesys Cloud에 연결하여 IVR 라우트를 나열하고, IVR의 구성된 영업시간 플로우를 검색하여 읽기 쉬운 Markdown 문서를 생성합니다.

생성된 문서는 비즈니스 및 기술 독자 모두를 위해 구성됩니다:

  • Route — IVR 이름, ID, 상태, DNIS(가능한 경우), 구성된 플로우.

  • Business Focus — 플로우 목적 및 고객 메뉴 라우팅.

  • Technical Focus — 플로우 설정, 변수, 프롬프트/TTS, 태스크, 메뉴, 결정 경로.

  • Integrations and Routing Dependencies — Data Actions, Bot Flows, ACD 큐.

사전 요구 사항

  • Node.js 18 이상

  • Client Credentials 권한을 사용하는 Genesys Cloud OAuth 클라이언트

  • 해당 Genesys Cloud 조직에서 Architect IVR 및 플로우를 읽을 수 있는 권한

Related MCP server: Hive Mind MCP Server

설치 및 구성

의존성 설치:

cd <path-to-genesys-flow-mcp>
npm install

프로젝트 루트에 .env 파일을 생성합니다:

GENESYS_CLIENT_ID=your-client-id
GENESYS_CLIENT_SECERET=your-client-secret
GENESYS_REGION=ie

중요: GENESYS_CLIENT_SECERET는 현재 소스 코드와 일치하도록 의도적으로 이렇게 표기되었습니다. src/config/env.ts도 함께 업데이트하지 않는 한 SECRET으로 이름을 변경하지 마십시오.

GENESYS_REGION을 해당 Genesys Cloud 지역 접미사로 설정하십시오. 예를 들어 mypurecloud.ie의 경우 ie입니다.

로컬에서 실행

개발용:

npm run dev

데스크톱 클라이언트가 사용하는 컴파일된 서버:

npm run build
npm start

서버는 MCP stdio 전송을 사용합니다. MCP 클라이언트에 의해 시작되며, 브라우저 URL이나 HTTP 포트를 노출하지 않습니다.

MCP Inspector로 테스트

Claude Desktop에 연결하기 전에 MCP Inspector를 사용하여 서버를 직접 테스트하십시오:

cd <path-to-genesys-flow-mcp>
npm run inspect

Inspector는 로컬 브라우저 인터페이스를 엽니다. 여기에서:

  1. 기본 stdio 구성을 사용하여 서버에 연결합니다.

  2. 도구 탭을 엽니다.

  3. get_ivrs를 실행하여 Genesys 인증 및 라우트 검색을 확인합니다.

  4. IVR 이름으로 get_flow_by_name을 실행합니다. 예를 들어:

    {
      "name": "testt call"
    }
  5. 응답이 Route 섹션으로 시작하고 구성된 플로우, 프롬프트 및 통합이 포함되어 있는지 확인합니다.

사용 가능한 도구

get_ivrs

Genesys Cloud 라우팅/IVR 목록을 반환합니다.

요청 예시:

List the available Genesys IVRs.

get_flow_by_name

이름으로 IVR을 조회하고, 구성된 영업시간 플로우를 검색하여 Markdown 문서를 반환합니다.

입력:

{
  "name": "testt call"
}

요청 예시:

Use get_flow_by_name for the IVR named "testt call".

IVR을 찾을 수 없거나 영업시간 플로우가 없는 경우, 도구는 문제를 설명하는 오류를 반환합니다.

생성된 문서에 포함되는 내용

생성된 문서는 아래 관계를 따릅니다:

Genesys IVR Route
        ↓
Configured Open-Hours Flow
        ├── Business Focus: customer routing and menu choices
        └── Technical Focus: prompts, variables, tasks, menus, integrations

통합 감지는 아래 일반적인 Architect 의존성을 다룹니다:

Architect 요소

문서화 방식

DataAction

Data Action / Web Services Data Action

CallBotFlowAction

Bot Flow(이름 및 플로우 ID 포함)

TransferPureMatchAction

ACD Queue

태스크 및 메뉴 인사말에서 발견된 모든 TTS 프롬프트는 기술 플로우 설명에 포함됩니다.

Claude Desktop으로 테스트

  1. 프로젝트를 빌드합니다:

    cd <path-to-genesys-flow-mcp>
    npm run build
  2. Claude Desktop에서 다음을 엽니다:

    File → Settings → Developer → Edit Config
  3. 열린 JSON 파일의 최상위 레벨에 다음을 추가합니다. 기존 설정(예: 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"
          }
        }
      }
    }

    <path-to-genesys-flow-mcp>를 로컬 프로젝트 폴더의 전체 경로로 변경하십시오. 파일에 이미 속성이 있는 경우 mcpServers를 그 옆에 추가하고, 앞 속성이 쉼표로 끝나는지 확인하십시오.

  4. Claude Desktop을 완전히 종료하고 다시 엽니다.

  5. 새 채팅을 시작하고 다음을 요청합니다:

    What Genesys tools are available?

    그 다음 문서를 테스트합니다:

    Use get_flow_by_name for the IVR named "testt call" and document its route, configured flow, prompts, and integrations.

클라이언트 시크릿이 포함된 Claude Desktop 구성을 커밋하거나 공유하지 마십시오. 개인 기기에서 로컬 테스트를 위해 MCP env 블록을 통해 자격 증명을 전달하는 것은 허용됩니다. 최소한의 Genesys 권한을 가진 전용 OAuth 클라이언트를 사용하십시오.

빌드 확인

코드 변경 후 TypeScript 빌드 확인을 실행하십시오:

npm run build

프로젝트 구조

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 types
Install Server
F
license - not found
B
quality
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    Automatically 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
  • A
    license
    A
    quality
    C
    maintenance
    Enables 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.
    6
    MIT

View all related MCP servers

Related MCP Connectors

View all MCP Connectors

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/m-7-m/genesys-flow-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server