@fruggr/zendesk-mcp-server 1.1.1 → 1.1.3
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 +26 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1847 -2163
- package/dist/index.js.map +1 -1
- package/package.json +9 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fruggr/zendesk-mcp-server",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.3",
|
|
4
4
|
"description": "MCP server for Zendesk Support & Help Center APIs with OAuth 2.1 PKCE",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -12,15 +12,17 @@
|
|
|
12
12
|
"dist/**/*"
|
|
13
13
|
],
|
|
14
14
|
"scripts": {
|
|
15
|
-
"build": "
|
|
15
|
+
"build": "tsdown",
|
|
16
16
|
"typecheck": "tsc --noEmit",
|
|
17
17
|
"start": "node dist/index.js",
|
|
18
18
|
"dev": "tsx watch src/index.ts",
|
|
19
|
+
"prepare": "npm run build",
|
|
19
20
|
"prepublishOnly": "npm run build",
|
|
20
21
|
"check": "biome check src/",
|
|
21
22
|
"check:fix": "biome check --write src/",
|
|
22
23
|
"test": "vitest run",
|
|
23
24
|
"test:watch": "vitest watch",
|
|
25
|
+
"test:coverage": "vitest run --coverage",
|
|
24
26
|
"test:smoke": "pnpm build && node scripts/smoke-test.mjs"
|
|
25
27
|
},
|
|
26
28
|
"keywords": [
|
|
@@ -47,7 +49,7 @@
|
|
|
47
49
|
"engines": {
|
|
48
50
|
"node": ">=20"
|
|
49
51
|
},
|
|
50
|
-
"packageManager": "pnpm@
|
|
52
|
+
"packageManager": "pnpm@11.3.0+sha512.2c403d6594527287672b1f7056343a1f7c3634036a67ffabfcc2b3d7595d843768f8787148d1b57cf7956c90606bbd192857c363af19e96d2d0ec9ec5741d215",
|
|
51
53
|
"dependencies": {
|
|
52
54
|
"@modelcontextprotocol/sdk": "1.29.0",
|
|
53
55
|
"cheerio": "1.2.0",
|
|
@@ -63,7 +65,7 @@
|
|
|
63
65
|
"remark-rehype": "11.1.2",
|
|
64
66
|
"remark-stringify": "11.0.0",
|
|
65
67
|
"unified": "11.0.5",
|
|
66
|
-
"zod": "4.3
|
|
68
|
+
"zod": "4.4.3"
|
|
67
69
|
},
|
|
68
70
|
"devDependencies": {
|
|
69
71
|
"@biomejs/biome": "^2.4.7",
|
|
@@ -79,10 +81,10 @@
|
|
|
79
81
|
"conventional-changelog-conventionalcommits": "^9.3.1",
|
|
80
82
|
"msw": "^2.12.13",
|
|
81
83
|
"semantic-release": "^25.0.3",
|
|
82
|
-
"shx": "^0.
|
|
83
|
-
"
|
|
84
|
+
"shx": "^0.4.0",
|
|
85
|
+
"tsdown": "^0.22.0",
|
|
84
86
|
"tsx": "^4.21.0",
|
|
85
|
-
"typescript": "^
|
|
87
|
+
"typescript": "^6.0.3",
|
|
86
88
|
"vitest": "^4.1.0"
|
|
87
89
|
}
|
|
88
90
|
}
|