@get-technology-inc/jamf-docs-mcp-server 5.3.0 → 5.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.
@@ -2,6 +2,28 @@
2
2
  * Locale constants for Jamf documentation
3
3
  */
4
4
  export declare const DEFAULT_LOCALE = "en-US";
5
+ /**
6
+ * Every locale Jamf actually publishes documentation in.
7
+ *
8
+ * Measured against all 662 maps of `/api/khub/maps` on 2026-09-02, ordered by
9
+ * how much content each carries:
10
+ *
11
+ * en-US 194 maps / 97 families nl-NL 10 / 10
12
+ * fr-FR 92 / 55 pt-BR 2 / 2
13
+ * de-DE 91 / 54 th-TH 2 / 2
14
+ * es-ES 91 / 54 zh-CN 2 / 2
15
+ * ja-JP 91 / 54 it-IT 2 / 2
16
+ * zh-TW 85 / 48
17
+ *
18
+ * `it-IT`, `pt-BR` and `zh-CN` were previously left undeclared on the reading
19
+ * that Fluid Topics listed them in `availableContentLocales` without shipping
20
+ * anything under them. That is no longer true: each carries the Jamf Parent
21
+ * and Jamf Teacher guides, and each returns a real five-node TOC in its own
22
+ * language ("Introduzione a Jamf Parent", "Introdução ao Jamf Parent",
23
+ * "开始使用Jamf Parent"). They sit at the bottom of the list for the same
24
+ * reason th-TH does — those two guides are published in 11 locales, the
25
+ * widest in the library, while everything else tops out at six.
26
+ */
5
27
  export declare const SUPPORTED_LOCALES: {
6
28
  readonly 'en-US': {
7
29
  readonly name: "English";
@@ -27,6 +49,15 @@ export declare const SUPPORTED_LOCALES: {
27
49
  readonly 'th-TH': {
28
50
  readonly name: "ไทย";
29
51
  };
52
+ readonly 'it-IT': {
53
+ readonly name: "Italiano";
54
+ };
55
+ readonly 'pt-BR': {
56
+ readonly name: "Português (Brasil)";
57
+ };
58
+ readonly 'zh-CN': {
59
+ readonly name: "简体中文";
60
+ };
30
61
  };
31
62
  export type LocaleId = keyof typeof SUPPORTED_LOCALES;
32
63
  export declare const SUPPORTED_LOCALE_IDS: [string, ...string[]];
@@ -1 +1 @@
1
- {"version":3,"file":"locales.d.ts","sourceRoot":"","sources":["../../../src/core/constants/locales.ts"],"names":[],"mappings":"AAAA;;GAEG;AAGH,eAAO,MAAM,cAAc,UAAU,CAAC;AAEtC,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;CASpB,CAAC;AAEX,MAAM,MAAM,QAAQ,GAAG,MAAM,OAAO,iBAAiB,CAAC;AACtD,eAAO,MAAM,oBAAoB,EAAqC,CAAC,MAAM,EAAE,GAAG,MAAM,EAAE,CAAC,CAAC;AAE5F,wBAAgB,aAAa,CAAC,SAAS,EAAE,MAAM,GAAG,QAAQ,CAEzD"}
1
+ {"version":3,"file":"locales.d.ts","sourceRoot":"","sources":["../../../src/core/constants/locales.ts"],"names":[],"mappings":"AAAA;;GAEG;AAGH,eAAO,MAAM,cAAc,UAAU,CAAC;AAEtC;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAYpB,CAAC;AAEX,MAAM,MAAM,QAAQ,GAAG,MAAM,OAAO,iBAAiB,CAAC;AACtD,eAAO,MAAM,oBAAoB,EAAqC,CAAC,MAAM,EAAE,GAAG,MAAM,EAAE,CAAC,CAAC;AAE5F,wBAAgB,aAAa,CAAC,SAAS,EAAE,MAAM,GAAG,QAAQ,CAEzD"}
@@ -3,6 +3,28 @@
3
3
  */
4
4
  // Supported locales for Jamf documentation (learn.jamf.com)
5
5
  export const DEFAULT_LOCALE = 'en-US';
6
+ /**
7
+ * Every locale Jamf actually publishes documentation in.
8
+ *
9
+ * Measured against all 662 maps of `/api/khub/maps` on 2026-09-02, ordered by
10
+ * how much content each carries:
11
+ *
12
+ * en-US 194 maps / 97 families nl-NL 10 / 10
13
+ * fr-FR 92 / 55 pt-BR 2 / 2
14
+ * de-DE 91 / 54 th-TH 2 / 2
15
+ * es-ES 91 / 54 zh-CN 2 / 2
16
+ * ja-JP 91 / 54 it-IT 2 / 2
17
+ * zh-TW 85 / 48
18
+ *
19
+ * `it-IT`, `pt-BR` and `zh-CN` were previously left undeclared on the reading
20
+ * that Fluid Topics listed them in `availableContentLocales` without shipping
21
+ * anything under them. That is no longer true: each carries the Jamf Parent
22
+ * and Jamf Teacher guides, and each returns a real five-node TOC in its own
23
+ * language ("Introduzione a Jamf Parent", "Introdução ao Jamf Parent",
24
+ * "开始使用Jamf Parent"). They sit at the bottom of the list for the same
25
+ * reason th-TH does — those two guides are published in 11 locales, the
26
+ * widest in the library, while everything else tops out at six.
27
+ */
6
28
  export const SUPPORTED_LOCALES = {
7
29
  'en-US': { name: 'English' },
8
30
  'ja-JP': { name: '日本語' },
@@ -12,6 +34,9 @@ export const SUPPORTED_LOCALES = {
12
34
  'fr-FR': { name: 'Français' },
13
35
  'nl-NL': { name: 'Nederlands' },
14
36
  'th-TH': { name: 'ไทย' },
37
+ 'it-IT': { name: 'Italiano' },
38
+ 'pt-BR': { name: 'Português (Brasil)' },
39
+ 'zh-CN': { name: '简体中文' },
15
40
  };
16
41
  export const SUPPORTED_LOCALE_IDS = Object.keys(SUPPORTED_LOCALES);
17
42
  export function toValidLocale(candidate) {
@@ -1 +1 @@
1
- {"version":3,"file":"locales.js","sourceRoot":"","sources":["../../../src/core/constants/locales.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,4DAA4D;AAC5D,MAAM,CAAC,MAAM,cAAc,GAAG,OAAO,CAAC;AAEtC,MAAM,CAAC,MAAM,iBAAiB,GAAG;IAC/B,OAAO,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE;IAC5B,OAAO,EAAE,EAAE,IAAI,EAAE,KAAK,EAAE;IACxB,OAAO,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE;IACzB,OAAO,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE;IAC5B,OAAO,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE;IAC5B,OAAO,EAAE,EAAE,IAAI,EAAE,UAAU,EAAE;IAC7B,OAAO,EAAE,EAAE,IAAI,EAAE,YAAY,EAAE;IAC/B,OAAO,EAAE,EAAE,IAAI,EAAE,KAAK,EAAE;CAChB,CAAC;AAGX,MAAM,CAAC,MAAM,oBAAoB,GAAG,MAAM,CAAC,IAAI,CAAC,iBAAiB,CAA0B,CAAC;AAE5F,MAAM,UAAU,aAAa,CAAC,SAAiB;IAC7C,OAAO,SAAS,IAAI,iBAAiB,CAAC,CAAC,CAAC,SAAqB,CAAC,CAAC,CAAC,cAAc,CAAC;AACjF,CAAC"}
1
+ {"version":3,"file":"locales.js","sourceRoot":"","sources":["../../../src/core/constants/locales.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,4DAA4D;AAC5D,MAAM,CAAC,MAAM,cAAc,GAAG,OAAO,CAAC;AAEtC;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,MAAM,CAAC,MAAM,iBAAiB,GAAG;IAC/B,OAAO,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE;IAC5B,OAAO,EAAE,EAAE,IAAI,EAAE,KAAK,EAAE;IACxB,OAAO,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE;IACzB,OAAO,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE;IAC5B,OAAO,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE;IAC5B,OAAO,EAAE,EAAE,IAAI,EAAE,UAAU,EAAE;IAC7B,OAAO,EAAE,EAAE,IAAI,EAAE,YAAY,EAAE;IAC/B,OAAO,EAAE,EAAE,IAAI,EAAE,KAAK,EAAE;IACxB,OAAO,EAAE,EAAE,IAAI,EAAE,UAAU,EAAE;IAC7B,OAAO,EAAE,EAAE,IAAI,EAAE,oBAAoB,EAAE;IACvC,OAAO,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE;CACjB,CAAC;AAGX,MAAM,CAAC,MAAM,oBAAoB,GAAG,MAAM,CAAC,IAAI,CAAC,iBAAiB,CAA0B,CAAC;AAE5F,MAAM,UAAU,aAAa,CAAC,SAAiB;IAC7C,OAAO,SAAS,IAAI,iBAAiB,CAAC,CAAC,CAAC,SAAqB,CAAC,CAAC,CAAC,cAAc,CAAC;AACjF,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@get-technology-inc/jamf-docs-mcp-server",
3
- "version": "5.3.0",
3
+ "version": "5.4.0",
4
4
  "description": "MCP Server for accessing Jamf Documentation (learn.jamf.com)",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",