@get-technology-inc/jamf-docs-mcp-server 5.2.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.
package/README.md CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
  An MCP server that gives AI assistants (Claude, Cursor, etc.) direct access to Jamf official documentation. Ask Jamf-related questions and get answers based on the latest docs from learn.jamf.com.
8
8
 
9
- **Supported Products**: Jamf Pro, Jamf School, Jamf Connect, Jamf Protect, Jamf Now, Jamf Safe Internet, Jamf Insights, RapidIdentity, Jamf Trust, Jamf Routines, Self Service+, Jamf App Catalog
9
+ **Supported Products** (28): Jamf Pro, Jamf School, Jamf Connect, Jamf Protect, Jamf Now, Jamf Safe Internet, Jamf Insights, RapidIdentity, Jamf Trust, Jamf Routines, Self Service+, Jamf App Catalog, Jamf Account, Jamf Security Cloud, Elevate, Composer, Jamf Parent, Jamf Teacher, Jamf Setup and Reset, Jamf Assessment, Title Editor, Jamf Infrastructure Manager, Jamf AD CS Connector, Jamf PKI Proxy, Jamf Migrate, Jamf Remote Assist, Jamf Cloud Distribution Service, Healthcare Listener
10
10
 
11
11
  [中文文件](docs/README.zh-TW.md)
12
12
 
@@ -115,7 +115,7 @@ Once configured, just ask your AI assistant:
115
115
  | `jamf_docs_list_products` | List all supported products, topics, and document type filters |
116
116
  | `jamf_docs_search` | Search documentation by keyword with filtering and pagination |
117
117
  | `jamf_docs_get_article` | Retrieve full content of a specific documentation article |
118
- | `jamf_docs_get_toc` | Browse the table of contents for a product |
118
+ | `jamf_docs_get_toc` | Browse the table of contents for a product or any single publication |
119
119
  | `jamf_docs_batch_get_articles` | Fetch multiple articles in one call (up to 10 URLs) |
120
120
  | `jamf_docs_glossary_lookup` | Look up Jamf terminology and definitions (fuzzy matching) |
121
121
 
@@ -266,6 +266,22 @@ Instructs the AI to compare table-of-contents structures and key articles betwee
266
266
  | `jamf-routines` | Jamf Routines | Automated workflow orchestration for device management |
267
267
  | `self-service-plus` | Self Service+ | Next-generation self-service portal for macOS and mobile |
268
268
  | `jamf-app-catalog` | Jamf App Catalog | Curated application catalog for managed deployments |
269
+ | `jamf-account` | Jamf Account | Identity, licensing, and platform services portal |
270
+ | `jamf-security-cloud` | Jamf Security Cloud | Cloud security portal for Jamf Connect and Jamf Protect |
271
+ | `elevate` | Elevate | Guided remediation and device health portal |
272
+ | `composer` | Composer | macOS package building and editing |
273
+ | `jamf-parent` | Jamf Parent | Parental device controls for school-issued devices |
274
+ | `jamf-teacher` | Jamf Teacher | Classroom device management for teachers |
275
+ | `jamf-setup-reset` | Jamf Setup and Reset | Device personalisation and wipe-and-reprovision apps |
276
+ | `jamf-assessment` | Jamf Assessment | Locked-down assessment mode for education devices |
277
+ | `title-editor` | Title Editor | Custom software title patch definitions |
278
+ | `jamf-infrastructure-manager` | Jamf Infrastructure Manager | On-premises proxy for LDAP and other internal services |
279
+ | `jamf-adcs-connector` | Jamf AD CS Connector | Certificate issuance via Active Directory Certificate Services |
280
+ | `jamf-pki-proxy` | Jamf PKI Proxy | Proxy for certificate authorities behind a firewall |
281
+ | `jamf-migrate` | Jamf Migrate | Migrating macOS devices between Jamf Pro instances |
282
+ | `jamf-remote-assist` | Jamf Remote Assist | Remote screen sharing and support sessions |
283
+ | `jamf-cloud-distribution-service` | Jamf Cloud Distribution Service | Jamf-hosted package distribution (JCDS) |
284
+ | `healthcare-listener` | Healthcare Listener | Integration with healthcare information systems |
269
285
 
270
286
  ## Key Features
271
287
 
@@ -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"}
@@ -121,6 +121,150 @@ export declare const JAMF_PRODUCTS: {
121
121
  readonly latestVersion: "current";
122
122
  readonly versions: readonly ["current"];
123
123
  };
124
+ readonly 'jamf-account': {
125
+ readonly id: "jamf-account";
126
+ readonly name: "Jamf Account";
127
+ readonly description: "Identity, licensing, and platform services portal";
128
+ readonly bundleId: "jamf-account-documentation";
129
+ readonly searchLabel: "product-account";
130
+ readonly latestVersion: "current";
131
+ readonly versions: readonly ["current"];
132
+ };
133
+ readonly 'jamf-security-cloud': {
134
+ readonly id: "jamf-security-cloud";
135
+ readonly name: "Jamf Security Cloud";
136
+ readonly description: "Cloud security portal for Jamf Connect and Jamf Protect";
137
+ readonly bundleId: "jamf-security-cloud-setup-guide";
138
+ readonly searchLabel: "product-security";
139
+ readonly latestVersion: "current";
140
+ readonly versions: readonly ["current"];
141
+ };
142
+ readonly elevate: {
143
+ readonly id: "elevate";
144
+ readonly name: "Elevate";
145
+ readonly description: "Guided remediation and device health portal";
146
+ readonly bundleId: "elevate-documentation";
147
+ readonly searchLabel: "product-elevate";
148
+ readonly latestVersion: "current";
149
+ readonly versions: readonly ["current"];
150
+ };
151
+ readonly composer: {
152
+ readonly id: "composer";
153
+ readonly name: "Composer";
154
+ readonly description: "macOS package building and editing";
155
+ readonly bundleId: "composer-user-guide";
156
+ readonly searchLabel: "product-composer";
157
+ readonly latestVersion: "current";
158
+ readonly versions: readonly ["current"];
159
+ };
160
+ readonly 'jamf-parent': {
161
+ readonly id: "jamf-parent";
162
+ readonly name: "Jamf Parent";
163
+ readonly description: "Parental device controls for school-issued devices";
164
+ readonly bundleId: "jamf-parent-configuration-guide";
165
+ readonly searchLabel: "product-parent";
166
+ readonly latestVersion: "current";
167
+ readonly versions: readonly ["current"];
168
+ };
169
+ readonly 'jamf-teacher': {
170
+ readonly id: "jamf-teacher";
171
+ readonly name: "Jamf Teacher";
172
+ readonly description: "Classroom device management for teachers";
173
+ readonly bundleId: "jamf-teacher-configuration-guide";
174
+ readonly searchLabel: "product-teacher";
175
+ readonly latestVersion: "current";
176
+ readonly versions: readonly ["current"];
177
+ };
178
+ readonly 'jamf-setup-reset': {
179
+ readonly id: "jamf-setup-reset";
180
+ readonly name: "Jamf Setup and Reset";
181
+ readonly description: "Device personalisation and wipe-and-reprovision apps";
182
+ readonly bundleId: "jamf-setup-reset-configuration-guide";
183
+ readonly searchLabel: "product-setup";
184
+ readonly latestVersion: "current";
185
+ readonly versions: readonly ["current"];
186
+ };
187
+ readonly 'jamf-assessment': {
188
+ readonly id: "jamf-assessment";
189
+ readonly name: "Jamf Assessment";
190
+ readonly description: "Locked-down assessment mode for education devices";
191
+ readonly bundleId: "jamf-assessment-configuration-guide";
192
+ readonly searchLabel: "product-assessment";
193
+ readonly latestVersion: "current";
194
+ readonly versions: readonly ["current"];
195
+ };
196
+ readonly 'title-editor': {
197
+ readonly id: "title-editor";
198
+ readonly name: "Title Editor";
199
+ readonly description: "Custom software title patch definitions";
200
+ readonly bundleId: "title-editor";
201
+ readonly searchLabel: "product-titleeditor";
202
+ readonly latestVersion: "current";
203
+ readonly versions: readonly ["current"];
204
+ };
205
+ readonly 'jamf-infrastructure-manager': {
206
+ readonly id: "jamf-infrastructure-manager";
207
+ readonly name: "Jamf Infrastructure Manager";
208
+ readonly description: "On-premises proxy for LDAP and other internal services";
209
+ readonly bundleId: "jamf-infrastructure-manager-ldap-proxy-install-guide";
210
+ readonly searchLabel: "product-infrastructuremanager";
211
+ readonly latestVersion: "current";
212
+ readonly versions: readonly ["current"];
213
+ };
214
+ readonly 'jamf-adcs-connector': {
215
+ readonly id: "jamf-adcs-connector";
216
+ readonly name: "Jamf AD CS Connector";
217
+ readonly description: "Certificate issuance via Active Directory Certificate Services";
218
+ readonly bundleId: "technical-paper-integrating-ad-cs";
219
+ readonly searchLabel: "product-adcsconnector";
220
+ readonly latestVersion: "current";
221
+ readonly versions: readonly ["current"];
222
+ };
223
+ readonly 'jamf-pki-proxy': {
224
+ readonly id: "jamf-pki-proxy";
225
+ readonly name: "Jamf PKI Proxy";
226
+ readonly description: "Proxy for certificate authorities behind a firewall";
227
+ readonly bundleId: "jamf-pki-proxy-install-guide";
228
+ readonly searchLabel: "product-pki-proxy";
229
+ readonly latestVersion: "current";
230
+ readonly versions: readonly ["current"];
231
+ };
232
+ readonly 'jamf-migrate': {
233
+ readonly id: "jamf-migrate";
234
+ readonly name: "Jamf Migrate";
235
+ readonly description: "Migrating macOS devices between Jamf Pro instances";
236
+ readonly bundleId: "jamf-migrate-user-guide";
237
+ readonly searchLabel: "product-migrate";
238
+ readonly latestVersion: "current";
239
+ readonly versions: readonly ["current"];
240
+ };
241
+ readonly 'jamf-remote-assist': {
242
+ readonly id: "jamf-remote-assist";
243
+ readonly name: "Jamf Remote Assist";
244
+ readonly description: "Remote screen sharing and support sessions";
245
+ readonly bundleId: "jamf-remote-assist-release-notes";
246
+ readonly searchLabel: "product-remote-assist";
247
+ readonly latestVersion: "current";
248
+ readonly versions: readonly ["current"];
249
+ };
250
+ readonly 'jamf-cloud-distribution-service': {
251
+ readonly id: "jamf-cloud-distribution-service";
252
+ readonly name: "Jamf Cloud Distribution Service";
253
+ readonly description: "Jamf-hosted package distribution (JCDS)";
254
+ readonly bundleId: "jamf-cloud-distribution-service-release-notes";
255
+ readonly searchLabel: "product-jcds";
256
+ readonly latestVersion: "current";
257
+ readonly versions: readonly ["current"];
258
+ };
259
+ readonly 'healthcare-listener': {
260
+ readonly id: "healthcare-listener";
261
+ readonly name: "Healthcare Listener";
262
+ readonly description: "Integration with healthcare information systems";
263
+ readonly bundleId: "healthcare-listener-install-guide";
264
+ readonly searchLabel: "product-healthcarelistener";
265
+ readonly latestVersion: "current";
266
+ readonly versions: readonly ["current"];
267
+ };
124
268
  };
125
269
  export type ProductId = keyof typeof JAMF_PRODUCTS;
126
270
  export declare const PRODUCT_IDS: [string, ...string[]];
@@ -1 +1 @@
1
- {"version":3,"file":"products.d.ts","sourceRoot":"","sources":["../../../src/core/constants/products.ts"],"names":[],"mappings":"AAAA;;GAEG;AAGH,eAAO,MAAM,WAAW,+RAA+R,CAAC;AAGxT,eAAO,MAAM,aAAa,2BAA2B,CAAC;AAEtD,eAAO,MAAM,WAAW,2BAAgB,CAAC;AAEzC;;GAEG;AACH,wBAAgB,WAAW,CAAC,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,GAAG,MAAM,CAElF;AAED;;GAEG;AACH,wBAAgB,eAAe,CAAC,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,GAAG,MAAM,CAExE;AAGD,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0HhB,CAAC;AAEX,MAAM,MAAM,SAAS,GAAG,MAAM,OAAO,aAAa,CAAC;AAGnD,eAAO,MAAM,WAAW,EAAiC,CAAC,MAAM,EAAE,GAAG,MAAM,EAAE,CAAC,CAAC;AAE/E;;;;;;;;;;;GAWG;AACH,eAAO,MAAM,eAAe,QAAyB,CAAC"}
1
+ {"version":3,"file":"products.d.ts","sourceRoot":"","sources":["../../../src/core/constants/products.ts"],"names":[],"mappings":"AAAA;;GAEG;AAGH,eAAO,MAAM,WAAW,+RAA+R,CAAC;AAGxT,eAAO,MAAM,aAAa,2BAA2B,CAAC;AAEtD,eAAO,MAAM,WAAW,2BAAgB,CAAC;AAEzC;;GAEG;AACH,wBAAgB,WAAW,CAAC,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,GAAG,MAAM,CAElF;AAED;;GAEG;AACH,wBAAgB,eAAe,CAAC,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,GAAG,MAAM,CAExE;AAGD,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAuShB,CAAC;AAEX,MAAM,MAAM,SAAS,GAAG,MAAM,OAAO,aAAa,CAAC;AAGnD,eAAO,MAAM,WAAW,EAAiC,CAAC,MAAM,EAAE,GAAG,MAAM,EAAE,CAAC,CAAC;AAE/E;;;;;;;;;;;GAWG;AACH,eAAO,MAAM,eAAe,QAAyB,CAAC"}
@@ -141,6 +141,178 @@ export const JAMF_PRODUCTS = {
141
141
  searchLabel: 'product-appcatalog',
142
142
  latestVersion: 'current',
143
143
  versions: ['current']
144
+ },
145
+ // ─── Registered from Jamf's own classification ──────────────────────
146
+ //
147
+ // Every row below names something Jamf itself files under `jamf:portal`,
148
+ // `jamf:app` or `jamf:utility` in the map metadata, and carries a
149
+ // `product-*` label whose maps are 100% that entity's. Those two
150
+ // conditions are the test: an entity Jamf does not name is not a product,
151
+ // and a label that spans entities cannot be a search filter.
152
+ //
153
+ // Deliberately absent: FusionID and Manager for Android. Jamf names both
154
+ // as portals but tags their maps with no `product-*` label at all, so a
155
+ // `product` filter for them would match nothing. They are reachable as
156
+ // publications `fluidid-documentation` and `manager-for-android-documentation`.
157
+ 'jamf-account': {
158
+ // `product-account` also tags the AI Governance guide and two training
159
+ // video sets. All four are Jamf Account documentation, so one product
160
+ // whose search returns all of them is the honest shape; the other three
161
+ // remain individually browsable on the publication axis.
162
+ id: 'jamf-account',
163
+ name: 'Jamf Account',
164
+ description: 'Identity, licensing, and platform services portal',
165
+ bundleId: 'jamf-account-documentation',
166
+ searchLabel: 'product-account',
167
+ latestVersion: 'current',
168
+ versions: ['current']
169
+ },
170
+ 'jamf-security-cloud': {
171
+ id: 'jamf-security-cloud',
172
+ name: 'Jamf Security Cloud',
173
+ description: 'Cloud security portal for Jamf Connect and Jamf Protect',
174
+ bundleId: 'jamf-security-cloud-setup-guide',
175
+ searchLabel: 'product-security',
176
+ latestVersion: 'current',
177
+ versions: ['current']
178
+ },
179
+ 'elevate': {
180
+ id: 'elevate',
181
+ name: 'Elevate',
182
+ description: 'Guided remediation and device health portal',
183
+ bundleId: 'elevate-documentation',
184
+ searchLabel: 'product-elevate',
185
+ latestVersion: 'current',
186
+ versions: ['current']
187
+ },
188
+ 'composer': {
189
+ id: 'composer',
190
+ name: 'Composer',
191
+ description: 'macOS package building and editing',
192
+ bundleId: 'composer-user-guide',
193
+ searchLabel: 'product-composer',
194
+ latestVersion: 'current',
195
+ versions: ['current']
196
+ },
197
+ 'jamf-parent': {
198
+ // `bundleId` is the administrator-facing configuration guide, which is
199
+ // what a Jamf admin asking for "the Jamf Parent docs" wants. The
200
+ // parent-facing guide is the same product's other publication - 11
201
+ // locales, the widest in the whole library and the only source of th-TH -
202
+ // and stays reachable as publication `jamf-parent-guide-for-parents`.
203
+ // `product-parent` covers both, so search spans them either way.
204
+ id: 'jamf-parent',
205
+ name: 'Jamf Parent',
206
+ description: 'Parental device controls for school-issued devices',
207
+ bundleId: 'jamf-parent-configuration-guide',
208
+ searchLabel: 'product-parent',
209
+ latestVersion: 'current',
210
+ versions: ['current']
211
+ },
212
+ 'jamf-teacher': {
213
+ // Same split as jamf-parent: admin guide here, `jamf-teacher-guide-for-teachers`
214
+ // on the publication axis.
215
+ id: 'jamf-teacher',
216
+ name: 'Jamf Teacher',
217
+ description: 'Classroom device management for teachers',
218
+ bundleId: 'jamf-teacher-configuration-guide',
219
+ searchLabel: 'product-teacher',
220
+ latestVersion: 'current',
221
+ versions: ['current']
222
+ },
223
+ 'jamf-setup-reset': {
224
+ // Two Jamf apps documented in one guide. `product-setup` and
225
+ // `product-reset` select the identical six maps, so either works as the
226
+ // filter and a second product row would only duplicate this one -
227
+ // and would collide on `bundleId`, which the registry invariants forbid.
228
+ id: 'jamf-setup-reset',
229
+ name: 'Jamf Setup and Reset',
230
+ description: 'Device personalisation and wipe-and-reprovision apps',
231
+ bundleId: 'jamf-setup-reset-configuration-guide',
232
+ searchLabel: 'product-setup',
233
+ latestVersion: 'current',
234
+ versions: ['current']
235
+ },
236
+ 'jamf-assessment': {
237
+ id: 'jamf-assessment',
238
+ name: 'Jamf Assessment',
239
+ description: 'Locked-down assessment mode for education devices',
240
+ bundleId: 'jamf-assessment-configuration-guide',
241
+ searchLabel: 'product-assessment',
242
+ latestVersion: 'current',
243
+ versions: ['current']
244
+ },
245
+ 'title-editor': {
246
+ id: 'title-editor',
247
+ name: 'Title Editor',
248
+ description: 'Custom software title patch definitions',
249
+ bundleId: 'title-editor',
250
+ searchLabel: 'product-titleeditor',
251
+ latestVersion: 'current',
252
+ versions: ['current']
253
+ },
254
+ 'jamf-infrastructure-manager': {
255
+ id: 'jamf-infrastructure-manager',
256
+ name: 'Jamf Infrastructure Manager',
257
+ description: 'On-premises proxy for LDAP and other internal services',
258
+ bundleId: 'jamf-infrastructure-manager-ldap-proxy-install-guide',
259
+ searchLabel: 'product-infrastructuremanager',
260
+ latestVersion: 'current',
261
+ versions: ['current']
262
+ },
263
+ 'jamf-adcs-connector': {
264
+ id: 'jamf-adcs-connector',
265
+ name: 'Jamf AD CS Connector',
266
+ description: 'Certificate issuance via Active Directory Certificate Services',
267
+ bundleId: 'technical-paper-integrating-ad-cs',
268
+ searchLabel: 'product-adcsconnector',
269
+ latestVersion: 'current',
270
+ versions: ['current']
271
+ },
272
+ 'jamf-pki-proxy': {
273
+ id: 'jamf-pki-proxy',
274
+ name: 'Jamf PKI Proxy',
275
+ description: 'Proxy for certificate authorities behind a firewall',
276
+ bundleId: 'jamf-pki-proxy-install-guide',
277
+ searchLabel: 'product-pki-proxy',
278
+ latestVersion: 'current',
279
+ versions: ['current']
280
+ },
281
+ 'jamf-migrate': {
282
+ id: 'jamf-migrate',
283
+ name: 'Jamf Migrate',
284
+ description: 'Migrating macOS devices between Jamf Pro instances',
285
+ bundleId: 'jamf-migrate-user-guide',
286
+ searchLabel: 'product-migrate',
287
+ latestVersion: 'current',
288
+ versions: ['current']
289
+ },
290
+ 'jamf-remote-assist': {
291
+ id: 'jamf-remote-assist',
292
+ name: 'Jamf Remote Assist',
293
+ description: 'Remote screen sharing and support sessions',
294
+ bundleId: 'jamf-remote-assist-release-notes',
295
+ searchLabel: 'product-remote-assist',
296
+ latestVersion: 'current',
297
+ versions: ['current']
298
+ },
299
+ 'jamf-cloud-distribution-service': {
300
+ id: 'jamf-cloud-distribution-service',
301
+ name: 'Jamf Cloud Distribution Service',
302
+ description: 'Jamf-hosted package distribution (JCDS)',
303
+ bundleId: 'jamf-cloud-distribution-service-release-notes',
304
+ searchLabel: 'product-jcds',
305
+ latestVersion: 'current',
306
+ versions: ['current']
307
+ },
308
+ 'healthcare-listener': {
309
+ id: 'healthcare-listener',
310
+ name: 'Healthcare Listener',
311
+ description: 'Integration with healthcare information systems',
312
+ bundleId: 'healthcare-listener-install-guide',
313
+ searchLabel: 'product-healthcarelistener',
314
+ latestVersion: 'current',
315
+ versions: ['current']
144
316
  }
145
317
  };
146
318
  // Derived ID array (shared by schemas, completions, etc.)
@@ -1 +1 @@
1
- {"version":3,"file":"products.js","sourceRoot":"","sources":["../../../src/core/constants/products.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,2DAA2D;AAC3D,MAAM,CAAC,MAAM,WAAW,GAAG,4RAA4R,CAAC;AAExT,YAAY;AACZ,MAAM,CAAC,MAAM,aAAa,GAAG,wBAAwB,CAAC;AACtD,iDAAiD;AACjD,MAAM,CAAC,MAAM,WAAW,GAAG,aAAa,CAAC;AAEzC;;GAEG;AACH,MAAM,UAAU,WAAW,CAAC,MAAc,EAAE,QAAgB,EAAE,IAAY;IACxE,OAAO,GAAG,aAAa,IAAI,MAAM,WAAW,QAAQ,SAAS,IAAI,EAAE,CAAC;AACtE,CAAC;AAED;;GAEG;AACH,MAAM,UAAU,eAAe,CAAC,MAAc,EAAE,QAAgB;IAC9D,OAAO,GAAG,MAAM,WAAW,QAAQ,OAAO,CAAC;AAC7C,CAAC;AAED,+DAA+D;AAC/D,MAAM,CAAC,MAAM,aAAa,GAAG;IAC3B,UAAU,EAAE;QACV,EAAE,EAAE,UAAU;QACd,IAAI,EAAE,UAAU;QAChB,WAAW,EAAE,wCAAwC;QACrD,QAAQ,EAAE,wBAAwB;QAClC,WAAW,EAAE,aAAa,EAAG,6CAA6C;QAC1E,aAAa,EAAE,SAAS;QACxB,QAAQ,EAAE,CAAC,SAAS,CAAC,CAAE,0CAA0C;KAClE;IACD,aAAa,EAAE;QACb,EAAE,EAAE,aAAa;QACjB,IAAI,EAAE,aAAa;QACnB,WAAW,EAAE,uCAAuC;QACpD,QAAQ,EAAE,2BAA2B;QACrC,WAAW,EAAE,gBAAgB;QAC7B,aAAa,EAAE,SAAS;QACxB,QAAQ,EAAE,CAAC,SAAS,CAAC;KACtB;IACD,cAAc,EAAE;QACd,EAAE,EAAE,cAAc;QAClB,IAAI,EAAE,cAAc;QACpB,WAAW,EAAE,gCAAgC;QAC7C,QAAQ,EAAE,4BAA4B;QACtC,WAAW,EAAE,iBAAiB;QAC9B,aAAa,EAAE,SAAS;QACxB,QAAQ,EAAE,CAAC,SAAS,CAAC;KACtB;IACD,cAAc,EAAE;QACd,EAAE,EAAE,cAAc;QAClB,IAAI,EAAE,cAAc;QACpB,WAAW,EAAE,6BAA6B;QAC1C,QAAQ,EAAE,4BAA4B;QACtC,WAAW,EAAE,iBAAiB;QAC9B,aAAa,EAAE,SAAS;QACxB,QAAQ,EAAE,CAAC,SAAS,CAAC;KACtB;IACD,UAAU,EAAE;QACV,EAAE,EAAE,UAAU;QACd,IAAI,EAAE,UAAU;QAChB,WAAW,EAAE,qDAAqD;QAClE,QAAQ,EAAE,wBAAwB;QAClC,WAAW,EAAE,aAAa;QAC1B,aAAa,EAAE,SAAS;QACxB,QAAQ,EAAE,CAAC,SAAS,CAAC;KACtB;IACD,oBAAoB,EAAE;QACpB,EAAE,EAAE,oBAAoB;QACxB,IAAI,EAAE,oBAAoB;QAC1B,WAAW,EAAE,+DAA+D;QAC5E,QAAQ,EAAE,kCAAkC;QAC5C,WAAW,EAAE,sBAAsB;QACnC,aAAa,EAAE,SAAS;QACxB,QAAQ,EAAE,CAAC,SAAS,CAAC;KACtB;IACD,eAAe,EAAE;QACf,EAAE,EAAE,eAAe;QACnB,IAAI,EAAE,eAAe;QACrB,WAAW,EAAE,kDAAkD;QAC/D,QAAQ,EAAE,6BAA6B;QACvC,WAAW,EAAE,kBAAkB;QAC/B,aAAa,EAAE,SAAS;QACxB,QAAQ,EAAE,CAAC,SAAS,CAAC;KACtB;IACD,oBAAoB,EAAE;QACpB,EAAE,EAAE,oBAAoB;QACxB,IAAI,EAAE,eAAe;QACrB,WAAW,EAAE,yCAAyC;QACtD,QAAQ,EAAE,kCAAkC;QAC5C,WAAW,EAAE,uBAAuB;QACpC,aAAa,EAAE,SAAS;QACxB,QAAQ,EAAE,CAAC,SAAS,CAAC;KACtB;IACD,YAAY,EAAE;QACZ,EAAE,EAAE,YAAY;QAChB,IAAI,EAAE,YAAY;QAClB,WAAW,EAAE,6CAA6C;QAC1D,QAAQ,EAAE,0BAA0B;QACpC,WAAW,EAAE,eAAe;QAC5B,aAAa,EAAE,SAAS;QACxB,QAAQ,EAAE,CAAC,SAAS,CAAC;KACtB;IACD,eAAe,EAAE;QACf,EAAE,EAAE,eAAe;QACnB,IAAI,EAAE,eAAe;QACrB,WAAW,EAAE,wDAAwD;QACrE,QAAQ,EAAE,6BAA6B;QACvC,4EAA4E;QAC5E,yEAAyE;QACzE,wEAAwE;QACxE,wEAAwE;QACxE,8EAA8E;QAC9E,WAAW,EAAE,kBAAkB;QAC/B,aAAa,EAAE,SAAS;QACxB,QAAQ,EAAE,CAAC,SAAS,CAAC;KACtB;IACD,mBAAmB,EAAE;QACnB,EAAE,EAAE,mBAAmB;QACvB,IAAI,EAAE,eAAe;QACrB,WAAW,EAAE,0DAA0D;QACvE,QAAQ,EAAE,iCAAiC;QAC3C,yEAAyE;QACzE,qEAAqE;QACrE,uEAAuE;QACvE,oEAAoE;QACpE,wEAAwE;QACxE,wEAAwE;QACxE,yEAAyE;QACzE,8DAA8D;QAC9D,WAAW,EAAE,qBAAqB;QAClC,aAAa,EAAE,SAAS;QACxB,QAAQ,EAAE,CAAC,SAAS,CAAC;KACtB;IACD,kBAAkB,EAAE;QAClB,EAAE,EAAE,kBAAkB;QACtB,IAAI,EAAE,kBAAkB;QACxB,WAAW,EAAE,qDAAqD;QAClE,QAAQ,EAAE,kBAAkB;QAC5B,WAAW,EAAE,oBAAoB;QACjC,aAAa,EAAE,SAAS;QACxB,QAAQ,EAAE,CAAC,SAAS,CAAC;KACtB;CACO,CAAC;AAIX,0DAA0D;AAC1D,MAAM,CAAC,MAAM,WAAW,GAAG,MAAM,CAAC,IAAI,CAAC,aAAa,CAA0B,CAAC;AAE/E;;;;;;;;;;;GAWG;AACH,MAAM,CAAC,MAAM,eAAe,GAAG,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC"}
1
+ {"version":3,"file":"products.js","sourceRoot":"","sources":["../../../src/core/constants/products.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@get-technology-inc/jamf-docs-mcp-server",
3
- "version": "5.2.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",