@fruggr/zendesk-mcp-server 1.3.0 → 1.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +87 -2
- package/dist/index.js +227 -34
- package/dist/index.js.map +1 -1
- package/package.json +22 -8
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fruggr/zendesk-mcp-server",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "MCP server for Zendesk Support & Help Center APIs
|
|
3
|
+
"version": "1.4.1",
|
|
4
|
+
"description": "Model Context Protocol (MCP) server for the Zendesk Support & Help Center APIs — per-user OAuth 2.1 PKCE authentication, read-only mode, and token-efficient section-based article editing.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -18,8 +18,8 @@
|
|
|
18
18
|
"dev": "tsx watch src/index.ts",
|
|
19
19
|
"prepare": "npm run build",
|
|
20
20
|
"prepublishOnly": "npm run build",
|
|
21
|
-
"check": "biome check src/",
|
|
22
|
-
"check:fix": "biome check --write src/",
|
|
21
|
+
"check": "biome check --error-on-warnings src/ tests/ scripts/",
|
|
22
|
+
"check:fix": "biome check --write src/ tests/ scripts/",
|
|
23
23
|
"test": "vitest run",
|
|
24
24
|
"test:watch": "vitest watch",
|
|
25
25
|
"test:coverage": "vitest run --coverage",
|
|
@@ -28,11 +28,25 @@
|
|
|
28
28
|
},
|
|
29
29
|
"keywords": [
|
|
30
30
|
"mcp",
|
|
31
|
+
"model-context-protocol",
|
|
32
|
+
"modelcontextprotocol",
|
|
33
|
+
"mcp-server",
|
|
31
34
|
"zendesk",
|
|
35
|
+
"zendesk-api",
|
|
36
|
+
"zendesk-support",
|
|
32
37
|
"help-center",
|
|
33
|
-
"
|
|
38
|
+
"knowledge-base",
|
|
39
|
+
"customer-support",
|
|
40
|
+
"customer-service",
|
|
41
|
+
"help-desk",
|
|
42
|
+
"support-tickets",
|
|
43
|
+
"oauth2",
|
|
44
|
+
"pkce",
|
|
45
|
+
"llm",
|
|
34
46
|
"ai",
|
|
35
|
-
"claude"
|
|
47
|
+
"claude",
|
|
48
|
+
"anthropic",
|
|
49
|
+
"cli"
|
|
36
50
|
],
|
|
37
51
|
"author": "Digital4Better <hello@digital4better.com>",
|
|
38
52
|
"license": "MIT",
|
|
@@ -50,7 +64,7 @@
|
|
|
50
64
|
"engines": {
|
|
51
65
|
"node": ">=20"
|
|
52
66
|
},
|
|
53
|
-
"packageManager": "pnpm@11.
|
|
67
|
+
"packageManager": "pnpm@11.5.0+sha512.dbfcc4f81cf48597afd4bc391ffdf12c11f1a9fb83a395bfa6b0a2d9cc2fd8ffebafdb1ccbd529632153f793904c2615b7f09fe1a345473fd1c35845172a8eb1",
|
|
54
68
|
"dependencies": {
|
|
55
69
|
"@modelcontextprotocol/sdk": "1.29.0",
|
|
56
70
|
"cheerio": "1.2.0",
|
|
@@ -69,7 +83,7 @@
|
|
|
69
83
|
"zod": "4.4.3"
|
|
70
84
|
},
|
|
71
85
|
"devDependencies": {
|
|
72
|
-
"@biomejs/biome": "
|
|
86
|
+
"@biomejs/biome": "2.4.16",
|
|
73
87
|
"@semantic-release/changelog": "^6.0.3",
|
|
74
88
|
"@semantic-release/git": "^10.0.1",
|
|
75
89
|
"@semantic-release/github": "^12.0.6",
|