Skip to content

Commit ab9c1af

Browse files
authored
Add tool efficiency evaluations (#31)
1 parent e318574 commit ab9c1af

File tree

13 files changed

+681
-23
lines changed

13 files changed

+681
-23
lines changed

README.md

Lines changed: 35 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ A Model Context Protocol (MCP) server for Genesys Cloud's Platform API.
2020

2121
## Usage with Claude Desktop
2222

23-
Add this to your `claude_desktop_config.json`:
24-
2523
### NPX
2624

25+
Add this to your `claude_desktop_config.json`:
26+
2727
```json
2828
{
2929
"mcpServers": {
@@ -41,6 +41,39 @@ Add this to your `claude_desktop_config.json`:
4141
}
4242
```
4343

44+
### Desktop Extension
45+
46+
This MCP Server provides a Desktop Extension (.dxt file) along with each [release](https://github.com/MakingChatbots/genesys-cloud-mcp-server/releases),
47+
which is a single-click installable package for Claude Desktop. To use it:
48+
49+
1. Download the `.dxt` file from the [latest release](https://github.com/MakingChatbots/genesys-cloud-mcp-server/releases)
50+
2. In Claude Desktop navigate to Settings > Extensions.
51+
3. Browse to, or drag in the .dxt file downloaded
52+
4. Click "Install"
53+
5. Configure the Region and OAuth Client for the extension
54+
55+
The extension will now be available in your conversations.
56+
57+
## Usage with Gemini CLI
58+
59+
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).
60+
61+
```json
62+
{
63+
"mcpServers": {
64+
"genesysCloud": {
65+
"command": "npx",
66+
"args": ["-y", "@makingchatbots/genesys-cloud-mcp-server"],
67+
"env": {
68+
"GENESYSCLOUD_REGION": "${GENESYSCLOUD_REGION}",
69+
"GENESYSCLOUD_OAUTHCLIENT_ID": "${GENESYSCLOUD_OAUTHCLIENT_ID}",
70+
"GENESYSCLOUD_OAUTHCLIENT_SECRET": "${GENESYSCLOUD_OAUTHCLIENT_SECRET}"
71+
}
72+
}
73+
}
74+
}
75+
```
76+
4477
## Authentication
4578

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

0 commit comments

Comments
 (0)