@enconvo/dxt 0.2.6

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.
@@ -0,0 +1,629 @@
1
+ import * as z from "zod";
2
+ export declare const McpServerConfigSchema: z.ZodObject<{
3
+ command: z.ZodString;
4
+ args: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
5
+ env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
6
+ }, "strip", z.ZodTypeAny, {
7
+ command: string;
8
+ args?: string[] | undefined;
9
+ env?: Record<string, string> | undefined;
10
+ }, {
11
+ command: string;
12
+ args?: string[] | undefined;
13
+ env?: Record<string, string> | undefined;
14
+ }>;
15
+ export declare const DxtManifestAuthorSchema: z.ZodObject<{
16
+ name: z.ZodString;
17
+ email: z.ZodOptional<z.ZodString>;
18
+ url: z.ZodOptional<z.ZodString>;
19
+ }, "strip", z.ZodTypeAny, {
20
+ name: string;
21
+ email?: string | undefined;
22
+ url?: string | undefined;
23
+ }, {
24
+ name: string;
25
+ email?: string | undefined;
26
+ url?: string | undefined;
27
+ }>;
28
+ export declare const DxtManifestRepositorySchema: z.ZodObject<{
29
+ type: z.ZodString;
30
+ url: z.ZodString;
31
+ }, "strip", z.ZodTypeAny, {
32
+ type: string;
33
+ url: string;
34
+ }, {
35
+ type: string;
36
+ url: string;
37
+ }>;
38
+ export declare const DxtManifestPlatformOverrideSchema: z.ZodObject<{
39
+ command: z.ZodOptional<z.ZodString>;
40
+ args: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
41
+ env: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
42
+ }, "strip", z.ZodTypeAny, {
43
+ command?: string | undefined;
44
+ args?: string[] | undefined;
45
+ env?: Record<string, string> | undefined;
46
+ }, {
47
+ command?: string | undefined;
48
+ args?: string[] | undefined;
49
+ env?: Record<string, string> | undefined;
50
+ }>;
51
+ export declare const DxtManifestMcpConfigSchema: z.ZodObject<{
52
+ command: z.ZodString;
53
+ args: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
54
+ env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
55
+ } & {
56
+ platform_overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
57
+ command: z.ZodOptional<z.ZodString>;
58
+ args: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
59
+ env: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
60
+ }, "strip", z.ZodTypeAny, {
61
+ command?: string | undefined;
62
+ args?: string[] | undefined;
63
+ env?: Record<string, string> | undefined;
64
+ }, {
65
+ command?: string | undefined;
66
+ args?: string[] | undefined;
67
+ env?: Record<string, string> | undefined;
68
+ }>>>;
69
+ }, "strip", z.ZodTypeAny, {
70
+ command: string;
71
+ args?: string[] | undefined;
72
+ env?: Record<string, string> | undefined;
73
+ platform_overrides?: Record<string, {
74
+ command?: string | undefined;
75
+ args?: string[] | undefined;
76
+ env?: Record<string, string> | undefined;
77
+ }> | undefined;
78
+ }, {
79
+ command: string;
80
+ args?: string[] | undefined;
81
+ env?: Record<string, string> | undefined;
82
+ platform_overrides?: Record<string, {
83
+ command?: string | undefined;
84
+ args?: string[] | undefined;
85
+ env?: Record<string, string> | undefined;
86
+ }> | undefined;
87
+ }>;
88
+ export declare const DxtManifestServerSchema: z.ZodObject<{
89
+ type: z.ZodEnum<["python", "node", "binary"]>;
90
+ entry_point: z.ZodString;
91
+ mcp_config: z.ZodObject<{
92
+ command: z.ZodString;
93
+ args: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
94
+ env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
95
+ } & {
96
+ platform_overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
97
+ command: z.ZodOptional<z.ZodString>;
98
+ args: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
99
+ env: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
100
+ }, "strip", z.ZodTypeAny, {
101
+ command?: string | undefined;
102
+ args?: string[] | undefined;
103
+ env?: Record<string, string> | undefined;
104
+ }, {
105
+ command?: string | undefined;
106
+ args?: string[] | undefined;
107
+ env?: Record<string, string> | undefined;
108
+ }>>>;
109
+ }, "strip", z.ZodTypeAny, {
110
+ command: string;
111
+ args?: string[] | undefined;
112
+ env?: Record<string, string> | undefined;
113
+ platform_overrides?: Record<string, {
114
+ command?: string | undefined;
115
+ args?: string[] | undefined;
116
+ env?: Record<string, string> | undefined;
117
+ }> | undefined;
118
+ }, {
119
+ command: string;
120
+ args?: string[] | undefined;
121
+ env?: Record<string, string> | undefined;
122
+ platform_overrides?: Record<string, {
123
+ command?: string | undefined;
124
+ args?: string[] | undefined;
125
+ env?: Record<string, string> | undefined;
126
+ }> | undefined;
127
+ }>;
128
+ }, "strip", z.ZodTypeAny, {
129
+ type: "python" | "node" | "binary";
130
+ entry_point: string;
131
+ mcp_config: {
132
+ command: string;
133
+ args?: string[] | undefined;
134
+ env?: Record<string, string> | undefined;
135
+ platform_overrides?: Record<string, {
136
+ command?: string | undefined;
137
+ args?: string[] | undefined;
138
+ env?: Record<string, string> | undefined;
139
+ }> | undefined;
140
+ };
141
+ }, {
142
+ type: "python" | "node" | "binary";
143
+ entry_point: string;
144
+ mcp_config: {
145
+ command: string;
146
+ args?: string[] | undefined;
147
+ env?: Record<string, string> | undefined;
148
+ platform_overrides?: Record<string, {
149
+ command?: string | undefined;
150
+ args?: string[] | undefined;
151
+ env?: Record<string, string> | undefined;
152
+ }> | undefined;
153
+ };
154
+ }>;
155
+ export declare const DxtManifestCompatibilitySchema: z.ZodObject<{
156
+ claude_desktop: z.ZodOptional<z.ZodString>;
157
+ platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["darwin", "win32", "linux"]>, "many">>;
158
+ runtimes: z.ZodOptional<z.ZodObject<{
159
+ python: z.ZodOptional<z.ZodString>;
160
+ node: z.ZodOptional<z.ZodString>;
161
+ }, "strip", z.ZodTypeAny, {
162
+ python?: string | undefined;
163
+ node?: string | undefined;
164
+ }, {
165
+ python?: string | undefined;
166
+ node?: string | undefined;
167
+ }>>;
168
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
169
+ claude_desktop: z.ZodOptional<z.ZodString>;
170
+ platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["darwin", "win32", "linux"]>, "many">>;
171
+ runtimes: z.ZodOptional<z.ZodObject<{
172
+ python: z.ZodOptional<z.ZodString>;
173
+ node: z.ZodOptional<z.ZodString>;
174
+ }, "strip", z.ZodTypeAny, {
175
+ python?: string | undefined;
176
+ node?: string | undefined;
177
+ }, {
178
+ python?: string | undefined;
179
+ node?: string | undefined;
180
+ }>>;
181
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
182
+ claude_desktop: z.ZodOptional<z.ZodString>;
183
+ platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["darwin", "win32", "linux"]>, "many">>;
184
+ runtimes: z.ZodOptional<z.ZodObject<{
185
+ python: z.ZodOptional<z.ZodString>;
186
+ node: z.ZodOptional<z.ZodString>;
187
+ }, "strip", z.ZodTypeAny, {
188
+ python?: string | undefined;
189
+ node?: string | undefined;
190
+ }, {
191
+ python?: string | undefined;
192
+ node?: string | undefined;
193
+ }>>;
194
+ }, z.ZodTypeAny, "passthrough">>;
195
+ export declare const DxtManifestToolSchema: z.ZodObject<{
196
+ name: z.ZodString;
197
+ description: z.ZodOptional<z.ZodString>;
198
+ }, "strip", z.ZodTypeAny, {
199
+ name: string;
200
+ description?: string | undefined;
201
+ }, {
202
+ name: string;
203
+ description?: string | undefined;
204
+ }>;
205
+ export declare const DxtManifestPromptSchema: z.ZodObject<{
206
+ name: z.ZodString;
207
+ description: z.ZodOptional<z.ZodString>;
208
+ arguments: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
209
+ text: z.ZodString;
210
+ }, "strip", z.ZodTypeAny, {
211
+ name: string;
212
+ text: string;
213
+ description?: string | undefined;
214
+ arguments?: string[] | undefined;
215
+ }, {
216
+ name: string;
217
+ text: string;
218
+ description?: string | undefined;
219
+ arguments?: string[] | undefined;
220
+ }>;
221
+ export declare const DxtUserConfigurationOptionSchema: z.ZodObject<{
222
+ type: z.ZodEnum<["string", "number", "boolean", "directory", "file"]>;
223
+ title: z.ZodString;
224
+ description: z.ZodString;
225
+ required: z.ZodOptional<z.ZodBoolean>;
226
+ default: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodArray<z.ZodString, "many">]>>;
227
+ multiple: z.ZodOptional<z.ZodBoolean>;
228
+ sensitive: z.ZodOptional<z.ZodBoolean>;
229
+ min: z.ZodOptional<z.ZodNumber>;
230
+ max: z.ZodOptional<z.ZodNumber>;
231
+ }, "strip", z.ZodTypeAny, {
232
+ type: "string" | "number" | "boolean" | "directory" | "file";
233
+ description: string;
234
+ title: string;
235
+ default?: string | number | boolean | string[] | undefined;
236
+ min?: number | undefined;
237
+ max?: number | undefined;
238
+ required?: boolean | undefined;
239
+ multiple?: boolean | undefined;
240
+ sensitive?: boolean | undefined;
241
+ }, {
242
+ type: "string" | "number" | "boolean" | "directory" | "file";
243
+ description: string;
244
+ title: string;
245
+ default?: string | number | boolean | string[] | undefined;
246
+ min?: number | undefined;
247
+ max?: number | undefined;
248
+ required?: boolean | undefined;
249
+ multiple?: boolean | undefined;
250
+ sensitive?: boolean | undefined;
251
+ }>;
252
+ export declare const DxtUserConfigValuesSchema: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodArray<z.ZodString, "many">]>>;
253
+ export declare const DxtManifestSchema: z.ZodObject<{
254
+ $schema: z.ZodOptional<z.ZodString>;
255
+ dxt_version: z.ZodString;
256
+ name: z.ZodString;
257
+ display_name: z.ZodOptional<z.ZodString>;
258
+ version: z.ZodString;
259
+ description: z.ZodString;
260
+ long_description: z.ZodOptional<z.ZodString>;
261
+ author: z.ZodObject<{
262
+ name: z.ZodString;
263
+ email: z.ZodOptional<z.ZodString>;
264
+ url: z.ZodOptional<z.ZodString>;
265
+ }, "strip", z.ZodTypeAny, {
266
+ name: string;
267
+ email?: string | undefined;
268
+ url?: string | undefined;
269
+ }, {
270
+ name: string;
271
+ email?: string | undefined;
272
+ url?: string | undefined;
273
+ }>;
274
+ repository: z.ZodOptional<z.ZodObject<{
275
+ type: z.ZodString;
276
+ url: z.ZodString;
277
+ }, "strip", z.ZodTypeAny, {
278
+ type: string;
279
+ url: string;
280
+ }, {
281
+ type: string;
282
+ url: string;
283
+ }>>;
284
+ homepage: z.ZodOptional<z.ZodString>;
285
+ documentation: z.ZodOptional<z.ZodString>;
286
+ support: z.ZodOptional<z.ZodString>;
287
+ icon: z.ZodOptional<z.ZodString>;
288
+ screenshots: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
289
+ server: z.ZodObject<{
290
+ type: z.ZodEnum<["python", "node", "binary"]>;
291
+ entry_point: z.ZodString;
292
+ mcp_config: z.ZodObject<{
293
+ command: z.ZodString;
294
+ args: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
295
+ env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
296
+ } & {
297
+ platform_overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
298
+ command: z.ZodOptional<z.ZodString>;
299
+ args: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
300
+ env: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
301
+ }, "strip", z.ZodTypeAny, {
302
+ command?: string | undefined;
303
+ args?: string[] | undefined;
304
+ env?: Record<string, string> | undefined;
305
+ }, {
306
+ command?: string | undefined;
307
+ args?: string[] | undefined;
308
+ env?: Record<string, string> | undefined;
309
+ }>>>;
310
+ }, "strip", z.ZodTypeAny, {
311
+ command: string;
312
+ args?: string[] | undefined;
313
+ env?: Record<string, string> | undefined;
314
+ platform_overrides?: Record<string, {
315
+ command?: string | undefined;
316
+ args?: string[] | undefined;
317
+ env?: Record<string, string> | undefined;
318
+ }> | undefined;
319
+ }, {
320
+ command: string;
321
+ args?: string[] | undefined;
322
+ env?: Record<string, string> | undefined;
323
+ platform_overrides?: Record<string, {
324
+ command?: string | undefined;
325
+ args?: string[] | undefined;
326
+ env?: Record<string, string> | undefined;
327
+ }> | undefined;
328
+ }>;
329
+ }, "strip", z.ZodTypeAny, {
330
+ type: "python" | "node" | "binary";
331
+ entry_point: string;
332
+ mcp_config: {
333
+ command: string;
334
+ args?: string[] | undefined;
335
+ env?: Record<string, string> | undefined;
336
+ platform_overrides?: Record<string, {
337
+ command?: string | undefined;
338
+ args?: string[] | undefined;
339
+ env?: Record<string, string> | undefined;
340
+ }> | undefined;
341
+ };
342
+ }, {
343
+ type: "python" | "node" | "binary";
344
+ entry_point: string;
345
+ mcp_config: {
346
+ command: string;
347
+ args?: string[] | undefined;
348
+ env?: Record<string, string> | undefined;
349
+ platform_overrides?: Record<string, {
350
+ command?: string | undefined;
351
+ args?: string[] | undefined;
352
+ env?: Record<string, string> | undefined;
353
+ }> | undefined;
354
+ };
355
+ }>;
356
+ tools: z.ZodOptional<z.ZodArray<z.ZodObject<{
357
+ name: z.ZodString;
358
+ description: z.ZodOptional<z.ZodString>;
359
+ }, "strip", z.ZodTypeAny, {
360
+ name: string;
361
+ description?: string | undefined;
362
+ }, {
363
+ name: string;
364
+ description?: string | undefined;
365
+ }>, "many">>;
366
+ tools_generated: z.ZodOptional<z.ZodBoolean>;
367
+ prompts: z.ZodOptional<z.ZodArray<z.ZodObject<{
368
+ name: z.ZodString;
369
+ description: z.ZodOptional<z.ZodString>;
370
+ arguments: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
371
+ text: z.ZodString;
372
+ }, "strip", z.ZodTypeAny, {
373
+ name: string;
374
+ text: string;
375
+ description?: string | undefined;
376
+ arguments?: string[] | undefined;
377
+ }, {
378
+ name: string;
379
+ text: string;
380
+ description?: string | undefined;
381
+ arguments?: string[] | undefined;
382
+ }>, "many">>;
383
+ prompts_generated: z.ZodOptional<z.ZodBoolean>;
384
+ keywords: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
385
+ license: z.ZodOptional<z.ZodString>;
386
+ compatibility: z.ZodOptional<z.ZodObject<{
387
+ claude_desktop: z.ZodOptional<z.ZodString>;
388
+ platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["darwin", "win32", "linux"]>, "many">>;
389
+ runtimes: z.ZodOptional<z.ZodObject<{
390
+ python: z.ZodOptional<z.ZodString>;
391
+ node: z.ZodOptional<z.ZodString>;
392
+ }, "strip", z.ZodTypeAny, {
393
+ python?: string | undefined;
394
+ node?: string | undefined;
395
+ }, {
396
+ python?: string | undefined;
397
+ node?: string | undefined;
398
+ }>>;
399
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
400
+ claude_desktop: z.ZodOptional<z.ZodString>;
401
+ platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["darwin", "win32", "linux"]>, "many">>;
402
+ runtimes: z.ZodOptional<z.ZodObject<{
403
+ python: z.ZodOptional<z.ZodString>;
404
+ node: z.ZodOptional<z.ZodString>;
405
+ }, "strip", z.ZodTypeAny, {
406
+ python?: string | undefined;
407
+ node?: string | undefined;
408
+ }, {
409
+ python?: string | undefined;
410
+ node?: string | undefined;
411
+ }>>;
412
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
413
+ claude_desktop: z.ZodOptional<z.ZodString>;
414
+ platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["darwin", "win32", "linux"]>, "many">>;
415
+ runtimes: z.ZodOptional<z.ZodObject<{
416
+ python: z.ZodOptional<z.ZodString>;
417
+ node: z.ZodOptional<z.ZodString>;
418
+ }, "strip", z.ZodTypeAny, {
419
+ python?: string | undefined;
420
+ node?: string | undefined;
421
+ }, {
422
+ python?: string | undefined;
423
+ node?: string | undefined;
424
+ }>>;
425
+ }, z.ZodTypeAny, "passthrough">>>;
426
+ user_config: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
427
+ type: z.ZodEnum<["string", "number", "boolean", "directory", "file"]>;
428
+ title: z.ZodString;
429
+ description: z.ZodString;
430
+ required: z.ZodOptional<z.ZodBoolean>;
431
+ default: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodArray<z.ZodString, "many">]>>;
432
+ multiple: z.ZodOptional<z.ZodBoolean>;
433
+ sensitive: z.ZodOptional<z.ZodBoolean>;
434
+ min: z.ZodOptional<z.ZodNumber>;
435
+ max: z.ZodOptional<z.ZodNumber>;
436
+ }, "strip", z.ZodTypeAny, {
437
+ type: "string" | "number" | "boolean" | "directory" | "file";
438
+ description: string;
439
+ title: string;
440
+ default?: string | number | boolean | string[] | undefined;
441
+ min?: number | undefined;
442
+ max?: number | undefined;
443
+ required?: boolean | undefined;
444
+ multiple?: boolean | undefined;
445
+ sensitive?: boolean | undefined;
446
+ }, {
447
+ type: "string" | "number" | "boolean" | "directory" | "file";
448
+ description: string;
449
+ title: string;
450
+ default?: string | number | boolean | string[] | undefined;
451
+ min?: number | undefined;
452
+ max?: number | undefined;
453
+ required?: boolean | undefined;
454
+ multiple?: boolean | undefined;
455
+ sensitive?: boolean | undefined;
456
+ }>>>;
457
+ }, "strip", z.ZodTypeAny, {
458
+ name: string;
459
+ description: string;
460
+ dxt_version: string;
461
+ version: string;
462
+ author: {
463
+ name: string;
464
+ email?: string | undefined;
465
+ url?: string | undefined;
466
+ };
467
+ server: {
468
+ type: "python" | "node" | "binary";
469
+ entry_point: string;
470
+ mcp_config: {
471
+ command: string;
472
+ args?: string[] | undefined;
473
+ env?: Record<string, string> | undefined;
474
+ platform_overrides?: Record<string, {
475
+ command?: string | undefined;
476
+ args?: string[] | undefined;
477
+ env?: Record<string, string> | undefined;
478
+ }> | undefined;
479
+ };
480
+ };
481
+ $schema?: string | undefined;
482
+ display_name?: string | undefined;
483
+ long_description?: string | undefined;
484
+ repository?: {
485
+ type: string;
486
+ url: string;
487
+ } | undefined;
488
+ homepage?: string | undefined;
489
+ documentation?: string | undefined;
490
+ support?: string | undefined;
491
+ icon?: string | undefined;
492
+ screenshots?: string[] | undefined;
493
+ tools?: {
494
+ name: string;
495
+ description?: string | undefined;
496
+ }[] | undefined;
497
+ tools_generated?: boolean | undefined;
498
+ prompts?: {
499
+ name: string;
500
+ text: string;
501
+ description?: string | undefined;
502
+ arguments?: string[] | undefined;
503
+ }[] | undefined;
504
+ prompts_generated?: boolean | undefined;
505
+ keywords?: string[] | undefined;
506
+ license?: string | undefined;
507
+ compatibility?: z.objectOutputType<{
508
+ claude_desktop: z.ZodOptional<z.ZodString>;
509
+ platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["darwin", "win32", "linux"]>, "many">>;
510
+ runtimes: z.ZodOptional<z.ZodObject<{
511
+ python: z.ZodOptional<z.ZodString>;
512
+ node: z.ZodOptional<z.ZodString>;
513
+ }, "strip", z.ZodTypeAny, {
514
+ python?: string | undefined;
515
+ node?: string | undefined;
516
+ }, {
517
+ python?: string | undefined;
518
+ node?: string | undefined;
519
+ }>>;
520
+ }, z.ZodTypeAny, "passthrough"> | undefined;
521
+ user_config?: Record<string, {
522
+ type: "string" | "number" | "boolean" | "directory" | "file";
523
+ description: string;
524
+ title: string;
525
+ default?: string | number | boolean | string[] | undefined;
526
+ min?: number | undefined;
527
+ max?: number | undefined;
528
+ required?: boolean | undefined;
529
+ multiple?: boolean | undefined;
530
+ sensitive?: boolean | undefined;
531
+ }> | undefined;
532
+ }, {
533
+ name: string;
534
+ description: string;
535
+ dxt_version: string;
536
+ version: string;
537
+ author: {
538
+ name: string;
539
+ email?: string | undefined;
540
+ url?: string | undefined;
541
+ };
542
+ server: {
543
+ type: "python" | "node" | "binary";
544
+ entry_point: string;
545
+ mcp_config: {
546
+ command: string;
547
+ args?: string[] | undefined;
548
+ env?: Record<string, string> | undefined;
549
+ platform_overrides?: Record<string, {
550
+ command?: string | undefined;
551
+ args?: string[] | undefined;
552
+ env?: Record<string, string> | undefined;
553
+ }> | undefined;
554
+ };
555
+ };
556
+ $schema?: string | undefined;
557
+ display_name?: string | undefined;
558
+ long_description?: string | undefined;
559
+ repository?: {
560
+ type: string;
561
+ url: string;
562
+ } | undefined;
563
+ homepage?: string | undefined;
564
+ documentation?: string | undefined;
565
+ support?: string | undefined;
566
+ icon?: string | undefined;
567
+ screenshots?: string[] | undefined;
568
+ tools?: {
569
+ name: string;
570
+ description?: string | undefined;
571
+ }[] | undefined;
572
+ tools_generated?: boolean | undefined;
573
+ prompts?: {
574
+ name: string;
575
+ text: string;
576
+ description?: string | undefined;
577
+ arguments?: string[] | undefined;
578
+ }[] | undefined;
579
+ prompts_generated?: boolean | undefined;
580
+ keywords?: string[] | undefined;
581
+ license?: string | undefined;
582
+ compatibility?: z.objectInputType<{
583
+ claude_desktop: z.ZodOptional<z.ZodString>;
584
+ platforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["darwin", "win32", "linux"]>, "many">>;
585
+ runtimes: z.ZodOptional<z.ZodObject<{
586
+ python: z.ZodOptional<z.ZodString>;
587
+ node: z.ZodOptional<z.ZodString>;
588
+ }, "strip", z.ZodTypeAny, {
589
+ python?: string | undefined;
590
+ node?: string | undefined;
591
+ }, {
592
+ python?: string | undefined;
593
+ node?: string | undefined;
594
+ }>>;
595
+ }, z.ZodTypeAny, "passthrough"> | undefined;
596
+ user_config?: Record<string, {
597
+ type: "string" | "number" | "boolean" | "directory" | "file";
598
+ description: string;
599
+ title: string;
600
+ default?: string | number | boolean | string[] | undefined;
601
+ min?: number | undefined;
602
+ max?: number | undefined;
603
+ required?: boolean | undefined;
604
+ multiple?: boolean | undefined;
605
+ sensitive?: boolean | undefined;
606
+ }> | undefined;
607
+ }>;
608
+ export declare const DxtSignatureInfoSchema: z.ZodObject<{
609
+ status: z.ZodEnum<["signed", "unsigned", "self-signed"]>;
610
+ publisher: z.ZodOptional<z.ZodString>;
611
+ issuer: z.ZodOptional<z.ZodString>;
612
+ valid_from: z.ZodOptional<z.ZodString>;
613
+ valid_to: z.ZodOptional<z.ZodString>;
614
+ fingerprint: z.ZodOptional<z.ZodString>;
615
+ }, "strip", z.ZodTypeAny, {
616
+ status: "signed" | "unsigned" | "self-signed";
617
+ publisher?: string | undefined;
618
+ issuer?: string | undefined;
619
+ valid_from?: string | undefined;
620
+ valid_to?: string | undefined;
621
+ fingerprint?: string | undefined;
622
+ }, {
623
+ status: "signed" | "unsigned" | "self-signed";
624
+ publisher?: string | undefined;
625
+ issuer?: string | undefined;
626
+ valid_from?: string | undefined;
627
+ valid_to?: string | undefined;
628
+ fingerprint?: string | undefined;
629
+ }>;