You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+12-13Lines changed: 12 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,18 @@ A Model Context Protocol (MCP) server for Genesys Cloud's Platform API.
22
22
23
23
## Usage with Claude Desktop
24
24
25
+
### MCP Bundle
26
+
27
+
This MCP Server provides an [MCP Bundle](https://github.com/anthropics/mcpb) (.mcpb file) along with each [release](https://github.com/MakingChatbots/genesys-cloud-mcp-server/releases),
28
+
which is a single-click installable package for Claude Desktop. To use it:
29
+
30
+
1. Download the `.mcpb` file from the [latest release](https://github.com/MakingChatbots/genesys-cloud-mcp-server/releases)
31
+
2. In Claude Desktop navigate to Settings > Extensions.
32
+
3. Open the .mcpb file with Claude
33
+
4. Configure the Region and OAuth Client for the extension
34
+
35
+
The extension will now be available in your conversations.
36
+
25
37
### NPX
26
38
27
39
Add this to your `claude_desktop_config.json`:
@@ -43,19 +55,6 @@ Add this to your `claude_desktop_config.json`:
43
55
}
44
56
```
45
57
46
-
### MCP Bundle
47
-
48
-
This MCP Server provides an [MCP Bundle](https://github.com/anthropics/mcpb) (.mcpb file) along with each [release](https://github.com/MakingChatbots/genesys-cloud-mcp-server/releases),
49
-
which is a single-click installable package for Claude Desktop. To use it:
50
-
51
-
1. Download the `.mcpb` file from the [latest release](https://github.com/MakingChatbots/genesys-cloud-mcp-server/releases)
52
-
2. In Claude Desktop navigate to Settings > Extensions.
53
-
3. Browse to, or drag in the .mcpb file downloaded
54
-
4. Click "Install"
55
-
5. Configure the Region and OAuth Client for the extension
56
-
57
-
The extension will now be available in your conversations.
58
-
59
58
## Usage with Gemini CLI
60
59
61
60
Add below to your `.gemini/settings.json` file. You can read more about the [setup from the official guide](https://github.com/google-gemini/gemini-cli/blob/main/docs/cli/tutorials.md#configure-the-mcp-server-in-settingsjson).
Copy file name to clipboardExpand all lines: manifest.json
+9-1Lines changed: 9 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
{
2
2
"manifest_version": "0.2",
3
3
"name": "Genesys Cloud MCP Server",
4
-
"version": "0.0.16",
4
+
"version": "1.0.2",
5
5
"description": "Interact with Genesys Cloud's Platform API",
6
6
"long_description": "This extension allows Claude to connect to Genesys Cloud's Platform API via a local MCP server. It provides tools for querying queue volumes, retrieving conversation samples, analyzing sentiment and voice quality, accessing transcripts, and more.\n\nThis project is not affiliated with Genesys.",
7
7
"author": {
@@ -55,6 +55,14 @@
55
55
{
56
56
"name": "conversation_transcript",
57
57
"description": "Retrieves a structured transcript of the conversation, including speaker labels, utterance timestamps, and sentiment annotations where available. The transcript is formatted as a time-aligned list of utterances attributed to each participant (e.g., customer or agent)."
58
+
},
59
+
{
60
+
"name": "oauth_clients",
61
+
"description": "Retrieves a list of all OAuth clients, including their associated roles and divisions. This tool is useful for auditing and managing OAuth clients in the Genesys Cloud organization."
62
+
},
63
+
{
64
+
"name": "oauth_client_usage",
65
+
"description": "Retrieves the usage of an OAuth Client for a given period. It returns the total number of requests and a breakdown of requests per organization."
"description": "A Model Context Protocol (MCP) server exposing Genesys Cloud tools for LLMs, including sentiment analysis, conversation search, topic detection and more.",
0 commit comments