Skip to content

Commit b4ac525

Browse files
committed
Increase version
1 parent 35d5d34 commit b4ac525

File tree

4 files changed

+65
-56
lines changed

4 files changed

+65
-56
lines changed

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"dxt_version": "0.1",
33
"name": "Genesys Cloud MCP Server",
4-
"version": "0.0.15",
4+
"version": "0.0.16",
55
"description": "Interact with Genesys Cloud's Platform API",
66
"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.",
77
"author": {

package-lock.json

Lines changed: 59 additions & 50 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@makingchatbots/genesys-cloud-mcp-server",
3-
"version": "0.0.15",
3+
"version": "0.0.16",
44
"description": "A Model Context Protocol (MCP) server exposing Genesys Cloud tools for LLMs, including sentiment analysis, conversation search, topic detection and more.",
55
"bin": "./dist/cli.js",
66
"type": "module",
@@ -43,14 +43,14 @@
4343
"test:pack": "npm run build && npm pack --pack-destination ./dist"
4444
},
4545
"dependencies": {
46-
"@modelcontextprotocol/sdk": "^1.16.0",
46+
"@modelcontextprotocol/sdk": "^1.18.2",
4747
"date-fns": "^4.1.0",
48-
"purecloud-platform-client-v2": "^227.0.0",
48+
"purecloud-platform-client-v2": "^231.0.0",
4949
"zod": "^3.23.8"
5050
},
5151
"devDependencies": {
5252
"dotenv": "^17.2.1",
53-
"@anthropic-ai/dxt": "^0.2.5",
53+
"@anthropic-ai/dxt": "^0.2.6",
5454
"@eslint/eslintrc": "^3.3.1",
5555
"@eslint/js": "^9.31.0",
5656
"@google/genai": "^1.12.0",

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const withAuth = OAuthClientCredentialsWrapper(
1919

2020
const server: McpServer = new McpServer({
2121
name: "Genesys Cloud",
22-
version: "0.0.15", // Same version as version in package.json
22+
version: "0.0.16", // Same version as version in package.json
2323
});
2424

2525
const routingApi = new platformClient.RoutingApi();

0 commit comments

Comments
 (0)