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
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ A Model Context Protocol (MCP) server for Genesys Cloud's Platform API.
7
7
8
8
## Tools Overview
9
9
10
-
An overview of the tools that this MPC server makes available. Read more about each specific tool
10
+
An overview of the tools that this MCP server makes available. Read more about each specific tool
11
11
in the [tools doc](/docs/tools.md).
12
12
13
13
| Tool | Description |
@@ -23,7 +23,7 @@ in the [tools doc](/docs/tools.md).
23
23
24
24
## Authentication
25
25
26
-
This currently only a supports stdio Server. To configure authentication you'll need to:
26
+
This currently only supports a stdio server. To configure authentication you'll need to:
27
27
28
28
1. Create an OAuth Client in Genesys Cloud
29
29
2. Assign the permissions to it for the tools you want to be used
@@ -43,6 +43,6 @@ npm run dev
43
43
## Under active development
44
44
45
45
This is part of [personal project](https://www.linkedin.com/posts/lucas-woodward-the-dev_genesys-genesyscloud-vertexai-activity-7321306518908280833-cWt8?utm_source=share&utm_medium=member_desktop&rcm=ACoAABsbo2wBcmnNqxYJ5UO9BrsfURZcVEtgLOU)
46
-
to create a conversational Business Insights tool. It is a practical way for my to learn MCP servers, and how best to represent Genesys Cloud's Platform APIs in a way that can be easily consumed by LLMs.
46
+
to create a conversational Business Insights tool. It is a practical way for me to learn MCP servers, and how best to represent Genesys Cloud's Platform APIs in a way that can be easily consumed by LLMs.
47
47
48
48
There will be a lot of changes, and I will be sure to [share my learnings in my newsletter](https://makingchatbots.com/).
Copy file name to clipboardExpand all lines: docs/tools.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ or listing available queues.
15
15
### Inputs
16
16
17
17
-`name`
18
-
- The name (or partial name) of the routing queue(s) to search for. Wildcards ('_') are supported for pattern matching (e.g., 'Support_', '*Emergency', '*Sales*'). Use '*' alone to retrieve all queues
18
+
- The name (or partial name) of the routing queue(s) to search for. Wildcards ('\*') are supported for pattern matching (e.g., 'Support\*', '\*Emergency', '\*Sales\*'). Use '\*' alone to retrieve all queues
19
19
-`pageNumber`
20
20
- The page number of the results to retrieve, starting from 1. Defaults to 1 if not specified. Used with 'pageSize' for navigating large result sets
21
21
-`pageSize`
@@ -180,7 +180,7 @@ Searches for voice conversations within a specified time window, optionally filt
180
180
-`pageNumber`
181
181
- The page number of the results to retrieve, starting from 1. Defaults to 1 if not specified. Used with 'pageSize' for navigating large result sets
182
182
-`pageSize`
183
-
- The maximum number of conversations to return per page. Defaults to 100 if not specified. Used with 'pageNumber' for pagination. The maximum value is 500
183
+
- The maximum number of conversations to return per page. Defaults to 100 if not specified. Used with 'pageNumber' for pagination. The maximum value is 100
184
184
-`startDate`
185
185
- The start date/time in ISO-8601 format (e.g., '2024-01-01T00:00:00Z')
"description": "A Model Context Protocol (MCP) server exposing Genesys Cloud tools for LLMs, including sentiment analysis, conversation search, topic detection and more.",
"The maximum number of conversations to return per page. Defaults to 100 if not specified. Used with 'pageNumber' for pagination. The maximum value is 500",
66
+
"The maximum number of conversations to return per page. Defaults to 100 if not specified. Used with 'pageNumber' for pagination. The maximum value is 100",
Copy file name to clipboardExpand all lines: src/tools/searchVoiceConversations.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,7 @@ const paramsSchema = z.object({
56
56
.max(100)
57
57
.optional()
58
58
.describe(
59
-
"The maximum number of conversations to return per page. Defaults to 100 if not specified. Used with 'pageNumber' for pagination. The maximum value is 500",
59
+
"The maximum number of conversations to return per page. Defaults to 100 if not specified. Used with 'pageNumber' for pagination. The maximum value is 100",
0 commit comments