@fruggr/zendesk-mcp-server 2.3.1 → 2.4.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.
Files changed (2) hide show
  1. package/README.md +2 -1
  2. package/package.json +4 -2
package/README.md CHANGED
@@ -1,6 +1,7 @@
1
1
  # Zendesk MCP Server
2
2
 
3
3
  [![Glama score](https://glama.ai/mcp/servers/fruggr/zendesk-mcp-server/badges/score.svg)](https://glama.ai/mcp/servers/fruggr/zendesk-mcp-server)
4
+ [![MCP Registry](https://img.shields.io/badge/MCP_Registry-io.github.fruggr%2Fzendesk--mcp--server-0a7ea4)](https://registry.modelcontextprotocol.io/?search=io.github.fruggr/zendesk-mcp-server)
4
5
  [![npm version](https://img.shields.io/npm/v/@fruggr/zendesk-mcp-server?logo=npm&color=cb3837)](https://www.npmjs.com/package/@fruggr/zendesk-mcp-server)
5
6
  [![License: MIT](https://img.shields.io/npm/l/@fruggr/zendesk-mcp-server?color=blue)](LICENSE)
6
7
  [![Node.js](https://img.shields.io/node/v/@fruggr/zendesk-mcp-server?logo=nodedotjs&logoColor=white&color=339933)](https://nodejs.org)
@@ -622,7 +623,7 @@ This project was built with reference to:
622
623
 
623
624
  ## Releases & versioning
624
625
 
625
- Versions follow [SemVer](https://semver.org/) and are calculated **automatically** from commit messages — no one bumps the version by hand. Every merge to `main` triggers [semantic-release](https://github.com/semantic-release/semantic-release), which inspects the new [Conventional Commits](https://www.conventionalcommits.org/) since the previous tag, computes the next version, updates [`CHANGELOG.md`](CHANGELOG.md), publishes to npm, and creates the matching GitHub Release.
626
+ Versions follow [SemVer](https://semver.org/) and are calculated **automatically** from commit messages — no one bumps the version by hand. Every merge to `main` triggers [semantic-release](https://github.com/semantic-release/semantic-release), which inspects the new [Conventional Commits](https://www.conventionalcommits.org/) since the previous tag, computes the next version, updates [`CHANGELOG.md`](CHANGELOG.md), publishes to npm, creates the matching GitHub Release, and mirrors the release into the [official MCP registry](https://registry.modelcontextprotocol.io) as [`io.github.fruggr/zendesk-mcp-server`](https://registry.modelcontextprotocol.io/?search=io.github.fruggr/zendesk-mcp-server) so registry-driven clients discover the new version automatically.
626
627
 
627
628
  | Commit type | Resulting bump |
628
629
  |---|---|
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "@fruggr/zendesk-mcp-server",
3
- "version": "2.3.1",
3
+ "version": "2.4.0",
4
+ "mcpName": "io.github.fruggr/zendesk-mcp-server",
4
5
  "description": "Model Context Protocol (MCP) server for the Zendesk Support & Help Center APIs — runs locally (stdio) or as a private remote MCP server (HTTP), with per-user OAuth 2.1 PKCE authentication, read-only mode, and token-efficient section-based article editing.",
5
6
  "type": "module",
6
7
  "main": "dist/index.js",
@@ -14,6 +15,7 @@
14
15
  ],
15
16
  "scripts": {
16
17
  "build": "tsdown",
18
+ "build:server-json": "node scripts/build-server-json.mjs > server.json",
17
19
  "typecheck": "tsc --noEmit",
18
20
  "start": "node dist/index.js",
19
21
  "dev": "tsx watch src/index.ts",
@@ -84,7 +86,7 @@
84
86
  "zod": "4.4.3"
85
87
  },
86
88
  "devDependencies": {
87
- "@biomejs/biome": "2.5.0",
89
+ "@biomejs/biome": "2.5.1",
88
90
  "@semantic-release/changelog": "^6.0.3",
89
91
  "@semantic-release/git": "^10.0.1",
90
92
  "@semantic-release/github": "^12.0.6",