@fruggr/zendesk-mcp-server 2.12.1 → 2.12.2
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/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1806,7 +1806,7 @@ const createHelpCenterTools = (ctx) => {
|
|
|
1806
1806
|
name_prefix: z.string().min(1).optional().describe("Return only content tags whose name starts with this prefix (prefix match — not a substring or fuzzy search). Use the full name to check whether a specific tag already exists before creating it."),
|
|
1807
1807
|
sort_by: z.enum(["name", "id"]).default("name").describe("Field to sort by; \"name\" (the default) lists tags alphabetically."),
|
|
1808
1808
|
sort_order: z.enum(["asc", "desc"]).default("asc").describe("Sort direction: ascending or descending."),
|
|
1809
|
-
page_size: z.number().int().min(1).max(
|
|
1809
|
+
page_size: z.number().int().min(1).max(30).default(30).describe("Content tags per page (1-30, default 30). The Guide content-tags endpoint caps each page at 30; follow the returned cursor to enumerate the full list."),
|
|
1810
1810
|
cursor: z.string().optional().describe("Pagination cursor from a previous response; omit for the first page.")
|
|
1811
1811
|
}),
|
|
1812
1812
|
annotations: {
|