@fruggr/zendesk-mcp-server 1.1.2 → 1.2.0
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 +27 -2
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1849 -2163
- package/dist/index.js.map +1 -1
- package/package.json +9 -11
package/README.md
CHANGED
|
@@ -84,7 +84,7 @@ zendesk-mcp-server acme --namespace tickets
|
|
|
84
84
|
| `list_user_segments` | List user segments (article visibility) | read |
|
|
85
85
|
| `compare_translations` | Section-level diff between two locales of an article | read |
|
|
86
86
|
| `create_article` | Create a new article in a section | write |
|
|
87
|
-
| `update_article` | Update article metadata (draft, labels, tags, visibility, section) | write |
|
|
87
|
+
| `update_article` | Update article metadata (draft, labels, tags, visibility, section, sort position) | write |
|
|
88
88
|
| `create_article_translation` | Create a translation for an article | write |
|
|
89
89
|
| `update_article_translation` | Update an article's translation (full body) | write |
|
|
90
90
|
| `update_article_section` | Replace a single section of an article | write |
|
|
@@ -117,9 +117,12 @@ zendesk-mcp-server acme --namespace tickets
|
|
|
117
117
|
|
|
118
118
|
## Prerequisites
|
|
119
119
|
|
|
120
|
-
- **Node.js** >= 20
|
|
120
|
+
- **Node.js** >= 20 (runtime — declared in `package.json#engines.node`)
|
|
121
121
|
- A **Zendesk** instance (Support or Suite)
|
|
122
122
|
|
|
123
|
+
> Contributors and maintainers run the toolchain on a newer Node + pnpm —
|
|
124
|
+
> see [Development](#development).
|
|
125
|
+
|
|
123
126
|
## Installation
|
|
124
127
|
|
|
125
128
|
```bash
|
|
@@ -144,6 +147,16 @@ pnpm build
|
|
|
144
147
|
node dist/index.js <your-subdomain>
|
|
145
148
|
```
|
|
146
149
|
|
|
150
|
+
Or run a development branch directly from GitHub (handy for testing PRs without publishing to npm) — the `prepare` script builds the package automatically on install:
|
|
151
|
+
|
|
152
|
+
```bash
|
|
153
|
+
# Latest main
|
|
154
|
+
npx -y github:fruggr/zendesk-mcp-server <your-subdomain>
|
|
155
|
+
|
|
156
|
+
# A specific branch / tag / commit
|
|
157
|
+
npx -y github:fruggr/zendesk-mcp-server#my-feature-branch <your-subdomain>
|
|
158
|
+
```
|
|
159
|
+
|
|
147
160
|
## Authentication
|
|
148
161
|
|
|
149
162
|
The server supports two authentication methods:
|
|
@@ -284,6 +297,18 @@ If both `ZENDESK_EMAIL` and `ZENDESK_API_TOKEN` are set, the server uses API tok
|
|
|
284
297
|
|
|
285
298
|
## Development
|
|
286
299
|
|
|
300
|
+
### Toolchain
|
|
301
|
+
|
|
302
|
+
| Tool | Version | Source of truth |
|
|
303
|
+
| ---- | ------- | ---------------- |
|
|
304
|
+
| Node | 24 | [`.nvmrc`](.nvmrc) — read by `nvm`, `fnm`, `mise`, `asdf`, `volta` |
|
|
305
|
+
| pnpm | 11 | [`package.json#packageManager`](package.json) (pinned with a corepack integrity hash) |
|
|
306
|
+
|
|
307
|
+
The toolchain (Node 24 + pnpm 11) is used to build, lint, type-check and
|
|
308
|
+
test the project. The **published package** still runs on Node 20+ (see
|
|
309
|
+
`engines.node`); a dedicated CI job installs the packed tarball on Node 20
|
|
310
|
+
and runs the smoke test to keep that promise honest.
|
|
311
|
+
|
|
287
312
|
```bash
|
|
288
313
|
# Install dependencies
|
|
289
314
|
pnpm install
|
package/dist/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
|
|
2
|
-
export {
|
|
2
|
+
export { };
|