@fruggr/zendesk-mcp-server 2.6.0 → 2.6.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 CHANGED
@@ -164,7 +164,7 @@ zendesk-mcp-server acme --namespace tickets
164
164
  | `update_article_translation` | Update an article's translation (full body) | write |
165
165
  | `update_article_section` | Replace a single section of an article | write |
166
166
  | `create_content_tag` | Create a new Guide content tag | write |
167
- | `create_article_attachment` | Upload an attachment to an article | write |
167
+ | `create_article_attachment` | Upload a file to a Help Center article (returns the created attachment) | write |
168
168
 
169
169
  </details>
170
170
 
package/dist/index.js CHANGED
@@ -1496,7 +1496,7 @@ const createHelpCenterTools = (ctx) => {
1496
1496
  namespace: "help_center",
1497
1497
  readOnly: false,
1498
1498
  title: "Create Help Center Article",
1499
- description: "Create a new article in a section. The locale becomes the article's source_locale. Requires a permission_group_id (use list_permission_groups to find available IDs). To add content in other locales afterwards, use create_article_translation.",
1499
+ description: "Create a new article in a section and return the created article with its id. The locale becomes the article's source_locale. Requires a permission_group_id (use list_permission_groups to find available IDs). To add content in other locales afterwards, use create_article_translation.",
1500
1500
  inputSchema: z.object({
1501
1501
  section_id: z.number().int().describe("Section that will contain the article (numeric id from list_sections)."),
1502
1502
  title: z.string().min(1).describe("Title of the new article, in its source locale."),
@@ -1530,7 +1530,7 @@ const createHelpCenterTools = (ctx) => {
1530
1530
  namespace: "help_center",
1531
1531
  readOnly: false,
1532
1532
  title: "Update Help Center Article",
1533
- description: "Update article metadata only (draft, promoted, labels, tags, visibility, section, sort position, etc.). Does NOT update content (title, body) — use update_article_translation for that.",
1533
+ description: "Update article metadata only (draft, promoted, labels, tags, visibility, section, sort position, etc.) and return the updated article. Does NOT update content (title, body) — use update_article_translation for that.",
1534
1534
  inputSchema: z.object({
1535
1535
  article_id: z.number().int().describe("Article ID — the numeric id of the article to update. Obtain it from list_articles or search_articles."),
1536
1536
  draft: z.boolean().optional().describe("Set true to unpublish the article (revert to draft) or false to publish it."),
@@ -1834,12 +1834,12 @@ const createHelpCenterTools = (ctx) => {
1834
1834
  namespace: "help_center",
1835
1835
  readOnly: false,
1836
1836
  title: "Create Article Attachment",
1837
- description: "Upload an attachment to an article. Provide file content as base64-encoded string.",
1837
+ description: "Upload a file to a Help Center article and return the created attachment (its id, file name, content type, size and content URL). Not idempotent: calling it again uploads another copy rather than replacing the previous one. This is for article assets — for files on support tickets use get_ticket_attachments, and to see an article's existing attachments use list_article_attachments.",
1838
1838
  inputSchema: z.object({
1839
1839
  article_id: z.number().int().describe(ARTICLE_ID_DESC),
1840
- file_name: z.string().min(1).describe("File name (e.g., \"screenshot.png\")"),
1841
- file_base64: z.string().min(1).describe("File content encoded as base64"),
1842
- content_type: z.string().default("application/octet-stream").describe("MIME type (e.g., \"image/png\", \"application/pdf\")")
1840
+ file_name: z.string().min(1).describe("Name to store the file under, including its extension (e.g. \"screenshot.png\"); used as the download name."),
1841
+ file_base64: z.string().min(1).describe("The file's raw bytes as a base64-encoded string; the server decodes them before upload."),
1842
+ content_type: z.string().default("application/octet-stream").describe("MIME type of the file, e.g. \"image/png\" or \"application/pdf\". Defaults to application/octet-stream when omitted.")
1843
1843
  }),
1844
1844
  annotations: {
1845
1845
  readOnlyHint: false,