@jupiterone/jupiterone-mcp 0.0.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.
Files changed (67) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +89 -0
  3. package/dist/client/graphql/mutations.d.ts +11 -0
  4. package/dist/client/graphql/mutations.d.ts.map +1 -0
  5. package/dist/client/graphql/mutations.js +315 -0
  6. package/dist/client/graphql/mutations.js.map +1 -0
  7. package/dist/client/graphql/queries.d.ts +15 -0
  8. package/dist/client/graphql/queries.d.ts.map +1 -0
  9. package/dist/client/graphql/queries.js +692 -0
  10. package/dist/client/graphql/queries.js.map +1 -0
  11. package/dist/client/jupiterone-client.d.ts +106 -0
  12. package/dist/client/jupiterone-client.d.ts.map +1 -0
  13. package/dist/client/jupiterone-client.js +137 -0
  14. package/dist/client/jupiterone-client.js.map +1 -0
  15. package/dist/client/services/account-service.d.ts +17 -0
  16. package/dist/client/services/account-service.d.ts.map +1 -0
  17. package/dist/client/services/account-service.js +37 -0
  18. package/dist/client/services/account-service.js.map +1 -0
  19. package/dist/client/services/alert-service.d.ts +15 -0
  20. package/dist/client/services/alert-service.d.ts.map +1 -0
  21. package/dist/client/services/alert-service.js +56 -0
  22. package/dist/client/services/alert-service.js.map +1 -0
  23. package/dist/client/services/dashboard-service.d.ts +123 -0
  24. package/dist/client/services/dashboard-service.d.ts.map +1 -0
  25. package/dist/client/services/dashboard-service.js +74 -0
  26. package/dist/client/services/dashboard-service.js.map +1 -0
  27. package/dist/client/services/integration-service.d.ts +45 -0
  28. package/dist/client/services/integration-service.d.ts.map +1 -0
  29. package/dist/client/services/integration-service.js +114 -0
  30. package/dist/client/services/integration-service.js.map +1 -0
  31. package/dist/client/services/j1ql-service.d.ts +21 -0
  32. package/dist/client/services/j1ql-service.d.ts.map +1 -0
  33. package/dist/client/services/j1ql-service.js +29 -0
  34. package/dist/client/services/j1ql-service.js.map +1 -0
  35. package/dist/client/services/rule-service.d.ts +61 -0
  36. package/dist/client/services/rule-service.d.ts.map +1 -0
  37. package/dist/client/services/rule-service.js +140 -0
  38. package/dist/client/services/rule-service.js.map +1 -0
  39. package/dist/descriptions/create-dashboard-widget.md +325 -0
  40. package/dist/descriptions/create-dashboard.md +12 -0
  41. package/dist/descriptions/create-inline-question-rule.md +357 -0
  42. package/dist/descriptions/create-j1ql-from-natural-language.md +7 -0
  43. package/dist/descriptions/execute-j1ql-query.md +426 -0
  44. package/dist/descriptions/list-alerts.md +14 -0
  45. package/dist/descriptions/list-rules.md +14 -0
  46. package/dist/descriptions/update-dashboard.md +467 -0
  47. package/dist/index.d.ts +3 -0
  48. package/dist/index.d.ts.map +1 -0
  49. package/dist/index.js +48 -0
  50. package/dist/index.js.map +1 -0
  51. package/dist/server/mcp-server.d.ts +10 -0
  52. package/dist/server/mcp-server.d.ts.map +1 -0
  53. package/dist/server/mcp-server.js +1496 -0
  54. package/dist/server/mcp-server.js.map +1 -0
  55. package/dist/types/jupiterone.d.ts +752 -0
  56. package/dist/types/jupiterone.d.ts.map +1 -0
  57. package/dist/types/jupiterone.js +2 -0
  58. package/dist/types/jupiterone.js.map +1 -0
  59. package/dist/utils/description-loader.d.ts +2 -0
  60. package/dist/utils/description-loader.d.ts.map +1 -0
  61. package/dist/utils/description-loader.js +14 -0
  62. package/dist/utils/description-loader.js.map +1 -0
  63. package/dist/utils/load-description.d.ts +2 -0
  64. package/dist/utils/load-description.d.ts.map +1 -0
  65. package/dist/utils/load-description.js +9 -0
  66. package/dist/utils/load-description.js.map +1 -0
  67. package/package.json +64 -0
@@ -0,0 +1,467 @@
1
+ Patch an existing dashboard's layout configuration. This tool is primarily used for modifying the layout of widgets on a dashboard after they have been created.
2
+ You will always want to call this after creating a dashboard and all its widgets so you can give a favorable layout to the user. Widgets should always have a size specified.
3
+ The layout configuration is organized by screen breakpoint sizes (xs, sm, md, lg, xl) and includes positioning information for each widget. Each layout item contains:
4
+
5
+ - `i`: Widget ID
6
+ - `x`: X coordinate (horizontal position)
7
+ - `y`: Y coordinate (vertical position)
8
+ - `w`: Width in grid units
9
+ - `h`: Height in grid units
10
+ - `moved`: Whether the widget has been moved (should always be false)
11
+ - `static`: Whether the widget position is fixed (should always be false)
12
+
13
+ Example layout configuration:
14
+
15
+ ```json
16
+ {
17
+ "xs": [],
18
+ "sm": [],
19
+ "md": [
20
+ {
21
+ "w": 5,
22
+ "h": 2,
23
+ "x": 0,
24
+ "y": 0,
25
+ "i": "widget-id-1",
26
+ "moved": false,
27
+ "static": false
28
+ }
29
+ ],
30
+ "lg": [],
31
+ "xl": []
32
+ }
33
+ ```
34
+
35
+ Here's an example layout that should be used for inspiration:
36
+
37
+ ```json
38
+ "layouts": {
39
+ "xs": [],
40
+ "sm": [
41
+ {
42
+ "w": 1,
43
+ "h": 1,
44
+ "x": 0,
45
+ "y": 0,
46
+ "i": "cc1bb92b-736b-4b76-bb2a-4ffb3fb6db04"
47
+ },
48
+ {
49
+ "w": 1,
50
+ "h": 1,
51
+ "x": 0,
52
+ "y": 1,
53
+ "i": "750ea929-fb31-46ef-b1d4-68c53b06e5a3"
54
+ },
55
+ {
56
+ "w": 1,
57
+ "h": 1,
58
+ "x": 0,
59
+ "y": 2,
60
+ "i": "92507e3e-2c99-4089-b75a-ce97ad4743d5"
61
+ },
62
+ {
63
+ "w": 2,
64
+ "h": 2,
65
+ "x": 0,
66
+ "y": 3,
67
+ "i": "f1535f10-a7ba-4c74-8ae6-d5be8c5655ee"
68
+ },
69
+ {
70
+ "w": 1,
71
+ "h": 1,
72
+ "x": 0,
73
+ "y": 7,
74
+ "i": "29df3495-eea3-45a2-b779-788d92c8baa4"
75
+ },
76
+ {
77
+ "w": 1,
78
+ "h": 1,
79
+ "x": 0,
80
+ "y": 8,
81
+ "i": "814000f8-9ffd-4ac3-90f8-26d321e9eba6"
82
+ },
83
+ {
84
+ "w": 1,
85
+ "h": 1,
86
+ "x": 0,
87
+ "y": 9,
88
+ "i": "293fc7fd-eb34-4383-82b8-068b62ffdd61"
89
+ },
90
+ {
91
+ "w": 1,
92
+ "h": 1,
93
+ "x": 0,
94
+ "y": 10,
95
+ "i": "b2e1c9b2-9da8-40d9-a068-9a6a4e0f2ed3"
96
+ },
97
+ {
98
+ "w": 1,
99
+ "h": 1,
100
+ "x": 0,
101
+ "y": 11,
102
+ "i": "24bf65f6-e196-4e49-9e91-7d5bceb5c080"
103
+ },
104
+ {
105
+ "w": 1,
106
+ "h": 1,
107
+ "x": 0,
108
+ "y": 12,
109
+ "i": "ce89d0fe-cd1d-4590-bffe-91c6f394ae4d"
110
+ },
111
+ {
112
+ "w": 1,
113
+ "h": 1,
114
+ "x": 0,
115
+ "y": 13,
116
+ "i": "883dc4ba-6e75-44e6-8c42-8979c63c2a12"
117
+ },
118
+ {
119
+ "w": 1,
120
+ "h": 1,
121
+ "x": 0,
122
+ "y": 14,
123
+ "i": "6ed5488a-0969-4cda-af4b-2ecb74b3963c"
124
+ },
125
+ {
126
+ "w": 1,
127
+ "h": 1,
128
+ "x": 0,
129
+ "y": 15,
130
+ "i": "7a5c6998-df18-474c-be1c-5938a5e68943"
131
+ },
132
+ {
133
+ "w": 1,
134
+ "h": 1,
135
+ "x": 0,
136
+ "y": 16,
137
+ "i": "3810193b-b6b6-428c-ab5c-48217d234ab4"
138
+ },
139
+ {
140
+ "w": 1,
141
+ "h": 1,
142
+ "x": 0,
143
+ "y": 17,
144
+ "i": "f6a487a4-b385-421e-bfb8-03b1e651ce25"
145
+ },
146
+ {
147
+ "w": 1,
148
+ "h": 1,
149
+ "x": 0,
150
+ "y": 18,
151
+ "i": "fd572af2-0df0-4d66-95e0-913cd79b973d"
152
+ },
153
+ {
154
+ "w": 1,
155
+ "h": 1,
156
+ "x": 0,
157
+ "y": 19,
158
+ "i": "d1096b70-22fb-47d2-95d3-e1d63416d8e3"
159
+ },
160
+ {
161
+ "w": 1,
162
+ "h": 1,
163
+ "x": 0,
164
+ "y": 20,
165
+ "i": "7d2e98b1-48cb-40bd-bef0-19e735c1fd3f"
166
+ },
167
+ {
168
+ "w": 1,
169
+ "h": 1,
170
+ "x": 0,
171
+ "y": 21,
172
+ "i": "373a6c3e-77ee-4044-ba11-af176c813fb0"
173
+ },
174
+ {
175
+ "w": 1,
176
+ "h": 1,
177
+ "x": 0,
178
+ "y": 22,
179
+ "i": "d679fc5e-ead3-4b7d-b650-559167edbeff"
180
+ },
181
+ {
182
+ "w": 1,
183
+ "h": 1,
184
+ "x": 0,
185
+ "y": 23,
186
+ "i": "ce48c3e2-5ff9-42c6-85c3-e87ae9148762"
187
+ },
188
+ {
189
+ "w": 1,
190
+ "h": 1,
191
+ "x": 0,
192
+ "y": 24,
193
+ "i": "384f066c-a4fe-4c26-b7cb-08f333cf9fac"
194
+ },
195
+ {
196
+ "w": 1,
197
+ "h": 1,
198
+ "x": 0,
199
+ "y": 25,
200
+ "i": "b1caf3ba-4c6e-45aa-8def-e94f1d9e0e3c"
201
+ },
202
+ {
203
+ "w": 1,
204
+ "h": 1,
205
+ "x": 0,
206
+ "y": 26,
207
+ "i": "c18dbb26-ecd1-4f19-ab9a-0de6980da2dc"
208
+ },
209
+ {
210
+ "w": 1,
211
+ "h": 1,
212
+ "x": 0,
213
+ "y": 27,
214
+ "i": "450cc2ff-8f00-4311-b508-db8084df8725"
215
+ },
216
+ {
217
+ "w": 2,
218
+ "h": 2,
219
+ "x": 0,
220
+ "y": 5,
221
+ "i": "befe345c-e392-40de-ad1b-97a38ac18503"
222
+ },
223
+ {
224
+ "w": 1,
225
+ "h": 1,
226
+ "x": 0,
227
+ "y": 28,
228
+ "i": "e8f652ba-d3ac-4adb-a16e-f410af56414b"
229
+ },
230
+ {
231
+ "w": 1,
232
+ "h": 1,
233
+ "x": 0,
234
+ "y": 29,
235
+ "i": "448f356d-d79f-47a2-a6ed-6ddf93d50f90"
236
+ },
237
+ {
238
+ "w": 1,
239
+ "h": 1,
240
+ "x": 0,
241
+ "y": 30,
242
+ "i": "4d8ec87c-9a01-41eb-a659-bb9ad2afd283"
243
+ },
244
+ {
245
+ "w": 1,
246
+ "h": 1,
247
+ "x": 0,
248
+ "y": 31,
249
+ "i": "6022a63e-38c0-42a4-bb9c-6a2c2e571da2"
250
+ }
251
+ ],
252
+ "md": [],
253
+ "lg": [
254
+ {
255
+ "w": 8,
256
+ "h": 2,
257
+ "x": 4,
258
+ "y": 34,
259
+ "i": "cc1bb92b-736b-4b76-bb2a-4ffb3fb6db04"
260
+ },
261
+ {
262
+ "w": 12,
263
+ "h": 2,
264
+ "x": 0,
265
+ "y": 9,
266
+ "i": "750ea929-fb31-46ef-b1d4-68c53b06e5a3"
267
+ },
268
+ {
269
+ "w": 12,
270
+ "h": 1,
271
+ "x": 0,
272
+ "y": 8,
273
+ "i": "92507e3e-2c99-4089-b75a-ce97ad4743d5"
274
+ },
275
+ {
276
+ "w": 6,
277
+ "h": 2,
278
+ "x": 0,
279
+ "y": 1,
280
+ "i": "f1535f10-a7ba-4c74-8ae6-d5be8c5655ee"
281
+ },
282
+ {
283
+ "w": 12,
284
+ "h": 2,
285
+ "x": 0,
286
+ "y": 24,
287
+ "i": "29df3495-eea3-45a2-b779-788d92c8baa4"
288
+ },
289
+ {
290
+ "w": 12,
291
+ "h": 2,
292
+ "x": 0,
293
+ "y": 29,
294
+ "i": "814000f8-9ffd-4ac3-90f8-26d321e9eba6"
295
+ },
296
+ {
297
+ "w": 4,
298
+ "h": 2,
299
+ "x": 0,
300
+ "y": 18,
301
+ "i": "293fc7fd-eb34-4383-82b8-068b62ffdd61"
302
+ },
303
+ {
304
+ "w": 6,
305
+ "h": 2,
306
+ "x": 6,
307
+ "y": 22,
308
+ "i": "b2e1c9b2-9da8-40d9-a068-9a6a4e0f2ed3"
309
+ },
310
+ {
311
+ "w": 12,
312
+ "h": 2,
313
+ "x": 0,
314
+ "y": 15,
315
+ "i": "24bf65f6-e196-4e49-9e91-7d5bceb5c080"
316
+ },
317
+ {
318
+ "w": 12,
319
+ "h": 1,
320
+ "x": 0,
321
+ "y": 33,
322
+ "i": "ce89d0fe-cd1d-4590-bffe-91c6f394ae4d"
323
+ },
324
+ {
325
+ "w": 6,
326
+ "h": 2,
327
+ "x": 6,
328
+ "y": 20,
329
+ "i": "883dc4ba-6e75-44e6-8c42-8979c63c2a12"
330
+ },
331
+ {
332
+ "w": 6,
333
+ "h": 2,
334
+ "x": 0,
335
+ "y": 22,
336
+ "i": "6ed5488a-0969-4cda-af4b-2ecb74b3963c"
337
+ },
338
+ {
339
+ "w": 6,
340
+ "h": 2,
341
+ "x": 6,
342
+ "y": 31,
343
+ "i": "7a5c6998-df18-474c-be1c-5938a5e68943"
344
+ },
345
+ {
346
+ "w": 6,
347
+ "h": 2,
348
+ "x": 0,
349
+ "y": 20,
350
+ "i": "3810193b-b6b6-428c-ab5c-48217d234ab4"
351
+ },
352
+ {
353
+ "w": 12,
354
+ "h": 2,
355
+ "x": 0,
356
+ "y": 6,
357
+ "i": "f6a487a4-b385-421e-bfb8-03b1e651ce25"
358
+ },
359
+ {
360
+ "w": 6,
361
+ "h": 2,
362
+ "x": 6,
363
+ "y": 3,
364
+ "i": "fd572af2-0df0-4d66-95e0-913cd79b973d"
365
+ },
366
+ {
367
+ "w": 7,
368
+ "h": 2,
369
+ "x": 5,
370
+ "y": 11,
371
+ "i": "d1096b70-22fb-47d2-95d3-e1d63416d8e3"
372
+ },
373
+ {
374
+ "w": 12,
375
+ "h": 1,
376
+ "x": 0,
377
+ "y": 5,
378
+ "i": "7d2e98b1-48cb-40bd-bef0-19e735c1fd3f"
379
+ },
380
+ {
381
+ "w": 6,
382
+ "h": 2,
383
+ "x": 0,
384
+ "y": 3,
385
+ "i": "373a6c3e-77ee-4044-ba11-af176c813fb0"
386
+ },
387
+ {
388
+ "w": 8,
389
+ "h": 2,
390
+ "x": 4,
391
+ "y": 18,
392
+ "i": "d679fc5e-ead3-4b7d-b650-559167edbeff"
393
+ },
394
+ {
395
+ "w": 6,
396
+ "h": 2,
397
+ "x": 0,
398
+ "y": 31,
399
+ "i": "ce48c3e2-5ff9-42c6-85c3-e87ae9148762"
400
+ },
401
+ {
402
+ "w": 12,
403
+ "h": 1,
404
+ "x": 0,
405
+ "y": 26,
406
+ "i": "384f066c-a4fe-4c26-b7cb-08f333cf9fac"
407
+ },
408
+ {
409
+ "w": 12,
410
+ "h": 2,
411
+ "x": 0,
412
+ "y": 36,
413
+ "i": "b1caf3ba-4c6e-45aa-8def-e94f1d9e0e3c"
414
+ },
415
+ {
416
+ "w": 6,
417
+ "h": 2,
418
+ "x": 6,
419
+ "y": 1,
420
+ "i": "c18dbb26-ecd1-4f19-ab9a-0de6980da2dc"
421
+ },
422
+ {
423
+ "w": 12,
424
+ "h": 1,
425
+ "x": 0,
426
+ "y": 0,
427
+ "i": "450cc2ff-8f00-4311-b508-db8084df8725"
428
+ },
429
+ {
430
+ "w": 5,
431
+ "h": 2,
432
+ "x": 0,
433
+ "y": 11,
434
+ "i": "befe345c-e392-40de-ad1b-97a38ac18503"
435
+ },
436
+ {
437
+ "w": 12,
438
+ "h": 1,
439
+ "x": 0,
440
+ "y": 17,
441
+ "i": "e8f652ba-d3ac-4adb-a16e-f410af56414b"
442
+ },
443
+ {
444
+ "w": 12,
445
+ "h": 2,
446
+ "x": 0,
447
+ "y": 13,
448
+ "i": "448f356d-d79f-47a2-a6ed-6ddf93d50f90"
449
+ },
450
+ {
451
+ "w": 4,
452
+ "h": 2,
453
+ "x": 0,
454
+ "y": 34,
455
+ "i": "4d8ec87c-9a01-41eb-a659-bb9ad2afd283"
456
+ },
457
+ {
458
+ "w": 12,
459
+ "h": 2,
460
+ "x": 0,
461
+ "y": 27,
462
+ "i": "6022a63e-38c0-42a4-bb9c-6a2c2e571da2"
463
+ }
464
+ ],
465
+ "xl": []
466
+ }
467
+ ```
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+ export {};
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":""}
package/dist/index.js ADDED
@@ -0,0 +1,48 @@
1
+ #!/usr/bin/env node
2
+ import { JupiterOneMcpServer } from './server/mcp-server.js';
3
+ import dotenv from 'dotenv';
4
+ dotenv.config();
5
+ async function main() {
6
+ try {
7
+ // Get configuration from environment variables
8
+ const config = {
9
+ apiKey: process.env.JUPITERONE_API_KEY || '',
10
+ accountId: process.env.JUPITERONE_ACCOUNT_ID || '',
11
+ baseUrl: process.env.JUPITERONE_BASE_URL || 'https://graphql.us.jupiterone.io'
12
+ };
13
+ // Validate required fields
14
+ if (!config.apiKey) {
15
+ throw new Error('JUPITERONE_API_KEY environment variable is required');
16
+ }
17
+ if (!config.accountId) {
18
+ throw new Error('JUPITERONE_ACCOUNT_ID environment variable is required');
19
+ }
20
+ // Create and start the MCP server
21
+ const server = new JupiterOneMcpServer(config);
22
+ // Handle graceful shutdown
23
+ process.on('SIGINT', async () => {
24
+ console.error('Received SIGINT, shutting down gracefully...');
25
+ await server.stop();
26
+ process.exit(0);
27
+ });
28
+ process.on('SIGTERM', async () => {
29
+ console.error('Received SIGTERM, shutting down gracefully...');
30
+ await server.stop();
31
+ process.exit(0);
32
+ });
33
+ // Start the server
34
+ await server.start();
35
+ }
36
+ catch (error) {
37
+ console.error('Failed to start JupiterOne MCP server:', error);
38
+ process.exit(1);
39
+ }
40
+ }
41
+ // Only run if this file is executed directly
42
+ if (import.meta.url === `file://${process.argv[1]}`) {
43
+ main().catch((error) => {
44
+ console.error('Unhandled error:', error);
45
+ process.exit(1);
46
+ });
47
+ }
48
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAEA,OAAO,EAAE,mBAAmB,EAAE,MAAM,wBAAwB,CAAC;AAC7D,OAAO,MAAM,MAAM,QAAQ,CAAC;AAG5B,MAAM,CAAC,MAAM,EAAE,CAAC;AAEhB,KAAK,UAAU,IAAI;IACjB,IAAI,CAAC;QACH,+CAA+C;QAC/C,MAAM,MAAM,GAAqB;YAC/B,MAAM,EAAE,OAAO,CAAC,GAAG,CAAC,kBAAkB,IAAI,EAAE;YAC5C,SAAS,EAAE,OAAO,CAAC,GAAG,CAAC,qBAAqB,IAAI,EAAE;YAClD,OAAO,EAAE,OAAO,CAAC,GAAG,CAAC,mBAAmB,IAAI,kCAAkC;SAC/E,CAAC;QAEF,2BAA2B;QAC3B,IAAI,CAAC,MAAM,CAAC,MAAM,EAAE,CAAC;YACnB,MAAM,IAAI,KAAK,CAAC,qDAAqD,CAAC,CAAC;QACzE,CAAC;QACD,IAAI,CAAC,MAAM,CAAC,SAAS,EAAE,CAAC;YACtB,MAAM,IAAI,KAAK,CAAC,wDAAwD,CAAC,CAAC;QAC5E,CAAC;QAED,kCAAkC;QAClC,MAAM,MAAM,GAAG,IAAI,mBAAmB,CAAC,MAAM,CAAC,CAAC;QAE/C,2BAA2B;QAC3B,OAAO,CAAC,EAAE,CAAC,QAAQ,EAAE,KAAK,IAAI,EAAE;YAC9B,OAAO,CAAC,KAAK,CAAC,8CAA8C,CAAC,CAAC;YAC9D,MAAM,MAAM,CAAC,IAAI,EAAE,CAAC;YACpB,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;QAClB,CAAC,CAAC,CAAC;QAEH,OAAO,CAAC,EAAE,CAAC,SAAS,EAAE,KAAK,IAAI,EAAE;YAC/B,OAAO,CAAC,KAAK,CAAC,+CAA+C,CAAC,CAAC;YAC/D,MAAM,MAAM,CAAC,IAAI,EAAE,CAAC;YACpB,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;QAClB,CAAC,CAAC,CAAC;QAEH,mBAAmB;QACnB,MAAM,MAAM,CAAC,KAAK,EAAE,CAAC;IAEvB,CAAC;IAAC,OAAO,KAAK,EAAE,CAAC;QACf,OAAO,CAAC,KAAK,CAAC,wCAAwC,EAAE,KAAK,CAAC,CAAC;QAC/D,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IAClB,CAAC;AACH,CAAC;AAED,6CAA6C;AAC7C,IAAI,MAAM,CAAC,IAAI,CAAC,GAAG,KAAK,UAAU,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC;IACpD,IAAI,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,EAAE,EAAE;QACrB,OAAO,CAAC,KAAK,CAAC,kBAAkB,EAAE,KAAK,CAAC,CAAC;QACzC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IAClB,CAAC,CAAC,CAAC;AACL,CAAC"}
@@ -0,0 +1,10 @@
1
+ import { JupiterOneConfig } from '../types/jupiterone.js';
2
+ export declare class JupiterOneMcpServer {
3
+ private server;
4
+ private client;
5
+ constructor(config: JupiterOneConfig);
6
+ private setupTools;
7
+ start(): Promise<void>;
8
+ stop(): Promise<void>;
9
+ }
10
+ //# sourceMappingURL=mcp-server.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"mcp-server.d.ts","sourceRoot":"","sources":["../../src/server/mcp-server.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,gBAAgB,EAAE,MAAM,wBAAwB,CAAC;AAW1D,qBAAa,mBAAmB;IAC9B,OAAO,CAAC,MAAM,CAAY;IAC1B,OAAO,CAAC,MAAM,CAAmB;gBAErB,MAAM,EAAE,gBAAgB;IAUpC,OAAO,CAAC,UAAU;IA2tDZ,KAAK,IAAI,OAAO,CAAC,IAAI,CAAC;IAKtB,IAAI,IAAI,OAAO,CAAC,IAAI,CAAC;CAG5B"}