Skip to content

Commit 65429cf

Browse files
committed
Add tool use evaluations
1 parent 73f1dd7 commit 65429cf

File tree

12 files changed

+666
-32
lines changed

12 files changed

+666
-32
lines changed

README.md

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

2121
## Usage with Claude Desktop
2222

23+
### NPX
24+
25+
Add this to your `claude_desktop_config.json`:
26+
27+
```json
28+
{
29+
"mcpServers": {
30+
"genesys-cloud": {
31+
"type": "stdio",
32+
"command": "npx",
33+
"args": ["-y", "@makingchatbots/genesys-cloud-mcp-server"],
34+
"env": {
35+
"GENESYSCLOUD_REGION": "<PUT REGION HERE>",
36+
"GENESYSCLOUD_OAUTHCLIENT_ID": "<PUT OAUTHCLIENT ID HERE>",
37+
"GENESYSCLOUD_OAUTHCLIENT_SECRET": "<PUT OAUTHCLIENT SECRET HERE>"
38+
}
39+
}
40+
}
41+
}
42+
```
43+
2344
### Desktop Extension
2445

2546
This MCP Server provides a Desktop Extension (.dxt file) along with each [release](https://github.com/MakingChatbots/genesys-cloud-mcp-server/releases),
26-
which is a single-click installable packages for Claude Desktop. To use it:
47+
which is a single-click installable package for Claude Desktop. To use it:
2748

2849
1. Download the `.dxt` file from the [latest release](https://github.com/MakingChatbots/genesys-cloud-mcp-server/releases)
2950
2. In Claude Desktop navigate to Settings > Extensions.
30-
3. Browse or drag in the .dxt file downloaded
51+
3. Browse to, or drag in the .dxt file downloaded
3152
4. Click "Install"
3253
5. Configure the Region and OAuth Client for the extension
3354

3455
The extension will now be available in your conversations.
3556

36-
### NPX
57+
## Usage with Gemini CLI
3758

38-
Add this to your `claude_desktop_config.json`:
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).
3960

4061
```json
4162
{
4263
"mcpServers": {
43-
"genesys-cloud": {
44-
"type": "stdio",
64+
"genesysCloud": {
4565
"command": "npx",
4666
"args": ["-y", "@makingchatbots/genesys-cloud-mcp-server"],
4767
"env": {
48-
"GENESYSCLOUD_REGION": "<PUT REGION HERE>",
49-
"GENESYSCLOUD_OAUTHCLIENT_ID": "<PUT OAUTHCLIENT ID HERE>",
50-
"GENESYSCLOUD_OAUTHCLIENT_SECRET": "<PUT OAUTHCLIENT SECRET HERE>"
68+
"GENESYSCLOUD_REGION": "${GENESYSCLOUD_REGION}",
69+
"GENESYSCLOUD_OAUTHCLIENT_ID": "${GENESYSCLOUD_OAUTHCLIENT_ID}",
70+
"GENESYSCLOUD_OAUTHCLIENT_SECRET": "${GENESYSCLOUD_OAUTHCLIENT_SECRET}"
5171
}
5272
}
5373
}
5474
}
5575
```
5676

77+
5778
## Authentication
5879

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

0 commit comments

Comments
 (0)