archal 0.9.8 → 0.9.9

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 (39) hide show
  1. package/README.md +163 -93
  2. package/bin/archal.cjs +3 -3
  3. package/dist/index.cjs +82301 -0
  4. package/dist/index.d.cts +1 -0
  5. package/dist/seed/dynamic-generator.cjs +45640 -0
  6. package/dist/seed/dynamic-generator.d.cts +67 -0
  7. package/dist/vitest/chunk-RKYS44AS.js +2216 -0
  8. package/dist/vitest/chunk-YJICENME.js +1230 -0
  9. package/dist/vitest/chunk-YV6BH6DO.js +45974 -0
  10. package/dist/vitest/index.cjs +51963 -0
  11. package/dist/vitest/index.d.ts +398 -0
  12. package/dist/vitest/index.js +2669 -0
  13. package/dist/vitest/runtime/hosted-session-reaper.cjs +29349 -0
  14. package/dist/vitest/runtime/hosted-session-reaper.d.ts +2 -0
  15. package/dist/vitest/runtime/hosted-session-reaper.js +58 -0
  16. package/dist/vitest/runtime/setup-files.d.ts +2 -0
  17. package/dist/vitest/runtime/setup-files.js +27 -0
  18. package/dist/vitest/src-JGHX6UKK.js +94 -0
  19. package/package.json +15 -19
  20. package/twin-assets/discord/fidelity.json +113 -0
  21. package/twin-assets/discord/tools.json +1953 -0
  22. package/twin-assets/github/fidelity.json +13 -0
  23. package/twin-assets/github/tools.json +21818 -0
  24. package/twin-assets/google-workspace/fidelity.json +19 -0
  25. package/twin-assets/google-workspace/tools.json +10191 -0
  26. package/twin-assets/jira/fidelity.json +40 -0
  27. package/twin-assets/jira/tools.json +17387 -0
  28. package/twin-assets/linear/fidelity.json +18 -0
  29. package/twin-assets/linear/tools.json +6496 -0
  30. package/twin-assets/ramp/fidelity.json +22 -0
  31. package/twin-assets/ramp/tools.json +2610 -0
  32. package/twin-assets/slack/fidelity.json +20 -0
  33. package/twin-assets/slack/tools.json +7301 -0
  34. package/twin-assets/stripe/fidelity.json +22 -0
  35. package/twin-assets/stripe/tools.json +15284 -0
  36. package/twin-assets/supabase/fidelity.json +13 -0
  37. package/twin-assets/supabase/tools.json +2973 -0
  38. package/dist/vitest.d.ts +0 -1
  39. package/dist/vitest.js +0 -23
@@ -0,0 +1,1953 @@
1
+ {
2
+ "twin": "discord",
3
+ "tools": [
4
+ {
5
+ "name": "discord_get_current_user",
6
+ "description": "Return the authenticated Discord bot user",
7
+ "inputSchema": {
8
+ "type": "object",
9
+ "properties": {},
10
+ "additionalProperties": false
11
+ },
12
+ "hidden": false,
13
+ "annotations": {
14
+ "readOnlyHint": true
15
+ }
16
+ },
17
+ {
18
+ "name": "discord_list_current_user_guilds",
19
+ "description": "Return the partial Guild list the authenticated bot is a member of (canonical `GET /users/@me/guilds`)",
20
+ "inputSchema": {
21
+ "type": "object",
22
+ "properties": {},
23
+ "additionalProperties": false
24
+ },
25
+ "hidden": false,
26
+ "annotations": {
27
+ "readOnlyHint": true
28
+ }
29
+ },
30
+ {
31
+ "name": "discord_get_current_application",
32
+ "description": "Return metadata for the authenticated Discord application",
33
+ "inputSchema": {
34
+ "type": "object",
35
+ "properties": {},
36
+ "additionalProperties": false
37
+ },
38
+ "hidden": false,
39
+ "annotations": {
40
+ "readOnlyHint": true
41
+ }
42
+ },
43
+ {
44
+ "name": "discord_get_gateway",
45
+ "description": "Return minimal Discord Gateway discovery metadata",
46
+ "inputSchema": {
47
+ "type": "object",
48
+ "properties": {},
49
+ "additionalProperties": false
50
+ },
51
+ "hidden": false,
52
+ "annotations": {
53
+ "readOnlyHint": true
54
+ }
55
+ },
56
+ {
57
+ "name": "discord_get_gateway_bot",
58
+ "description": "Return Discord Gateway bot discovery metadata",
59
+ "inputSchema": {
60
+ "type": "object",
61
+ "properties": {},
62
+ "additionalProperties": false
63
+ },
64
+ "hidden": false,
65
+ "annotations": {
66
+ "readOnlyHint": true
67
+ }
68
+ },
69
+ {
70
+ "name": "discord_gateway_dispatch_event",
71
+ "description": "Emit a Discord Gateway dispatch event to connected twin clients",
72
+ "inputSchema": {
73
+ "type": "object",
74
+ "properties": {
75
+ "type": {
76
+ "type": "string",
77
+ "minLength": 1
78
+ },
79
+ "data": {
80
+ "default": {},
81
+ "type": "object",
82
+ "propertyNames": {
83
+ "type": "string"
84
+ },
85
+ "additionalProperties": {}
86
+ }
87
+ },
88
+ "required": [
89
+ "type"
90
+ ],
91
+ "additionalProperties": false
92
+ },
93
+ "hidden": false
94
+ },
95
+ {
96
+ "name": "discord_get_guild",
97
+ "description": "Return metadata for a seeded Discord guild",
98
+ "inputSchema": {
99
+ "type": "object",
100
+ "properties": {
101
+ "guild_id": {
102
+ "type": "string",
103
+ "minLength": 1
104
+ }
105
+ },
106
+ "required": [
107
+ "guild_id"
108
+ ],
109
+ "additionalProperties": false
110
+ },
111
+ "hidden": false,
112
+ "annotations": {
113
+ "readOnlyHint": true
114
+ }
115
+ },
116
+ {
117
+ "name": "discord_list_guild_roles",
118
+ "description": "List roles for a seeded Discord guild",
119
+ "inputSchema": {
120
+ "type": "object",
121
+ "properties": {
122
+ "guild_id": {
123
+ "type": "string",
124
+ "minLength": 1
125
+ }
126
+ },
127
+ "required": [
128
+ "guild_id"
129
+ ],
130
+ "additionalProperties": false
131
+ },
132
+ "hidden": false,
133
+ "annotations": {
134
+ "readOnlyHint": true
135
+ }
136
+ },
137
+ {
138
+ "name": "discord_get_guild_member",
139
+ "description": "Return one seeded Discord guild member by guild and user id",
140
+ "inputSchema": {
141
+ "type": "object",
142
+ "properties": {
143
+ "guild_id": {
144
+ "type": "string",
145
+ "minLength": 1
146
+ },
147
+ "user_id": {
148
+ "type": "string",
149
+ "minLength": 1
150
+ }
151
+ },
152
+ "required": [
153
+ "guild_id",
154
+ "user_id"
155
+ ],
156
+ "additionalProperties": false
157
+ },
158
+ "hidden": false,
159
+ "annotations": {
160
+ "readOnlyHint": true
161
+ }
162
+ },
163
+ {
164
+ "name": "discord_list_guild_members",
165
+ "description": "List seeded Discord guild members with Discord-style limit and after pagination",
166
+ "inputSchema": {
167
+ "type": "object",
168
+ "properties": {
169
+ "guild_id": {
170
+ "type": "string",
171
+ "minLength": 1
172
+ },
173
+ "limit": {
174
+ "type": "integer",
175
+ "minimum": 1,
176
+ "maximum": 1000
177
+ },
178
+ "after": {
179
+ "type": "string",
180
+ "minLength": 1
181
+ }
182
+ },
183
+ "required": [
184
+ "guild_id"
185
+ ],
186
+ "additionalProperties": false
187
+ },
188
+ "hidden": false,
189
+ "annotations": {
190
+ "readOnlyHint": true
191
+ }
192
+ },
193
+ {
194
+ "name": "discord_list_guild_channels",
195
+ "description": "List channels for a seeded Discord guild",
196
+ "inputSchema": {
197
+ "type": "object",
198
+ "properties": {
199
+ "guild_id": {
200
+ "type": "string",
201
+ "minLength": 1
202
+ }
203
+ },
204
+ "required": [
205
+ "guild_id"
206
+ ],
207
+ "additionalProperties": false
208
+ },
209
+ "hidden": false,
210
+ "annotations": {
211
+ "readOnlyHint": true
212
+ }
213
+ },
214
+ {
215
+ "name": "discord_create_guild_channel",
216
+ "description": "Create a guild channel",
217
+ "inputSchema": {
218
+ "$schema": "http://json-schema.org/draft-07/schema#",
219
+ "type": "object",
220
+ "properties": {
221
+ "guild_id": {
222
+ "type": "string",
223
+ "minLength": 1
224
+ },
225
+ "name": {
226
+ "type": "string",
227
+ "minLength": 1,
228
+ "maxLength": 100
229
+ },
230
+ "type": {
231
+ "type": "integer",
232
+ "minimum": 0
233
+ },
234
+ "topic": {
235
+ "anyOf": [
236
+ {
237
+ "type": "string"
238
+ },
239
+ {
240
+ "type": "null"
241
+ }
242
+ ]
243
+ },
244
+ "rate_limit_per_user": {
245
+ "type": "integer",
246
+ "minimum": 0,
247
+ "maximum": 21600
248
+ },
249
+ "nsfw": {
250
+ "type": "boolean"
251
+ },
252
+ "parent_id": {
253
+ "anyOf": [
254
+ {
255
+ "type": "string"
256
+ },
257
+ {
258
+ "type": "null"
259
+ }
260
+ ]
261
+ }
262
+ },
263
+ "required": [
264
+ "guild_id",
265
+ "name"
266
+ ],
267
+ "additionalProperties": false
268
+ },
269
+ "hidden": false
270
+ },
271
+ {
272
+ "name": "discord_get_channel",
273
+ "description": "Return a seeded Discord channel",
274
+ "inputSchema": {
275
+ "type": "object",
276
+ "properties": {
277
+ "channel_id": {
278
+ "type": "string",
279
+ "minLength": 1
280
+ }
281
+ },
282
+ "required": [
283
+ "channel_id"
284
+ ],
285
+ "additionalProperties": false
286
+ },
287
+ "hidden": false,
288
+ "annotations": {
289
+ "readOnlyHint": true
290
+ }
291
+ },
292
+ {
293
+ "name": "discord_edit_channel",
294
+ "description": "Edit a Discord channel or thread",
295
+ "inputSchema": {
296
+ "$schema": "http://json-schema.org/draft-07/schema#",
297
+ "type": "object",
298
+ "properties": {
299
+ "channel_id": {
300
+ "type": "string",
301
+ "minLength": 1
302
+ },
303
+ "name": {
304
+ "type": "string",
305
+ "minLength": 1,
306
+ "maxLength": 100
307
+ },
308
+ "topic": {
309
+ "anyOf": [
310
+ {
311
+ "type": "string"
312
+ },
313
+ {
314
+ "type": "null"
315
+ }
316
+ ]
317
+ },
318
+ "rate_limit_per_user": {
319
+ "type": "integer",
320
+ "minimum": 0,
321
+ "maximum": 21600
322
+ },
323
+ "nsfw": {
324
+ "type": "boolean"
325
+ },
326
+ "archived": {
327
+ "type": "boolean"
328
+ },
329
+ "auto_archive_duration": {
330
+ "type": "integer",
331
+ "minimum": 1
332
+ },
333
+ "locked": {
334
+ "type": "boolean"
335
+ },
336
+ "invitable": {
337
+ "type": "boolean"
338
+ }
339
+ },
340
+ "required": [
341
+ "channel_id"
342
+ ],
343
+ "additionalProperties": false
344
+ },
345
+ "hidden": false
346
+ },
347
+ {
348
+ "name": "discord_delete_channel",
349
+ "description": "Delete a Discord channel or thread",
350
+ "inputSchema": {
351
+ "type": "object",
352
+ "properties": {
353
+ "channel_id": {
354
+ "type": "string",
355
+ "minLength": 1
356
+ }
357
+ },
358
+ "required": [
359
+ "channel_id"
360
+ ],
361
+ "additionalProperties": false
362
+ },
363
+ "hidden": false
364
+ },
365
+ {
366
+ "name": "discord_get_channel_messages",
367
+ "description": "Return recent message history for a seeded Discord channel",
368
+ "inputSchema": {
369
+ "type": "object",
370
+ "properties": {
371
+ "channel_id": {
372
+ "type": "string",
373
+ "minLength": 1
374
+ },
375
+ "around": {
376
+ "type": "string",
377
+ "minLength": 1
378
+ },
379
+ "before": {
380
+ "type": "string",
381
+ "minLength": 1
382
+ },
383
+ "after": {
384
+ "type": "string",
385
+ "minLength": 1
386
+ },
387
+ "limit": {
388
+ "type": "integer",
389
+ "minimum": 1,
390
+ "maximum": 100
391
+ }
392
+ },
393
+ "required": [
394
+ "channel_id"
395
+ ],
396
+ "additionalProperties": false
397
+ },
398
+ "hidden": false,
399
+ "annotations": {
400
+ "readOnlyHint": true
401
+ }
402
+ },
403
+ {
404
+ "name": "discord_list_channel_invites",
405
+ "description": "List invites for a Discord channel",
406
+ "inputSchema": {
407
+ "type": "object",
408
+ "properties": {
409
+ "channel_id": {
410
+ "type": "string",
411
+ "minLength": 1
412
+ }
413
+ },
414
+ "required": [
415
+ "channel_id"
416
+ ],
417
+ "additionalProperties": false
418
+ },
419
+ "hidden": false,
420
+ "annotations": {
421
+ "readOnlyHint": true
422
+ }
423
+ },
424
+ {
425
+ "name": "discord_create_channel_invite",
426
+ "description": "Create an invite for a Discord channel",
427
+ "inputSchema": {
428
+ "type": "object",
429
+ "properties": {
430
+ "channel_id": {
431
+ "type": "string",
432
+ "minLength": 1
433
+ },
434
+ "max_age": {
435
+ "type": "integer",
436
+ "minimum": 0,
437
+ "maximum": 604800
438
+ },
439
+ "max_uses": {
440
+ "type": "integer",
441
+ "minimum": 0,
442
+ "maximum": 100
443
+ },
444
+ "temporary": {
445
+ "type": "boolean"
446
+ }
447
+ },
448
+ "required": [
449
+ "channel_id"
450
+ ],
451
+ "additionalProperties": false
452
+ },
453
+ "hidden": false
454
+ },
455
+ {
456
+ "name": "discord_get_invite",
457
+ "description": "Return one Discord invite by code",
458
+ "inputSchema": {
459
+ "type": "object",
460
+ "properties": {
461
+ "invite_code": {
462
+ "type": "string",
463
+ "minLength": 1
464
+ }
465
+ },
466
+ "required": [
467
+ "invite_code"
468
+ ],
469
+ "additionalProperties": false
470
+ },
471
+ "hidden": false,
472
+ "annotations": {
473
+ "readOnlyHint": true
474
+ }
475
+ },
476
+ {
477
+ "name": "discord_delete_invite",
478
+ "description": "Delete a Discord invite by code",
479
+ "inputSchema": {
480
+ "type": "object",
481
+ "properties": {
482
+ "invite_code": {
483
+ "type": "string",
484
+ "minLength": 1
485
+ }
486
+ },
487
+ "required": [
488
+ "invite_code"
489
+ ],
490
+ "additionalProperties": false
491
+ },
492
+ "hidden": false
493
+ },
494
+ {
495
+ "name": "discord_get_channel_message",
496
+ "description": "Return one seeded Discord message by channel and message id",
497
+ "inputSchema": {
498
+ "type": "object",
499
+ "properties": {
500
+ "channel_id": {
501
+ "type": "string",
502
+ "minLength": 1
503
+ },
504
+ "message_id": {
505
+ "type": "string",
506
+ "minLength": 1
507
+ }
508
+ },
509
+ "required": [
510
+ "channel_id",
511
+ "message_id"
512
+ ],
513
+ "additionalProperties": false
514
+ },
515
+ "hidden": false,
516
+ "annotations": {
517
+ "readOnlyHint": true
518
+ }
519
+ },
520
+ {
521
+ "name": "discord_list_channel_webhooks",
522
+ "description": "List webhooks configured for one Discord channel",
523
+ "inputSchema": {
524
+ "type": "object",
525
+ "properties": {
526
+ "channel_id": {
527
+ "type": "string",
528
+ "minLength": 1
529
+ }
530
+ },
531
+ "required": [
532
+ "channel_id"
533
+ ],
534
+ "additionalProperties": false
535
+ },
536
+ "hidden": false,
537
+ "annotations": {
538
+ "readOnlyHint": true
539
+ }
540
+ },
541
+ {
542
+ "name": "discord_create_webhook",
543
+ "description": "Create a webhook in one Discord channel",
544
+ "inputSchema": {
545
+ "type": "object",
546
+ "properties": {
547
+ "channel_id": {
548
+ "type": "string",
549
+ "minLength": 1
550
+ },
551
+ "name": {
552
+ "type": "string",
553
+ "minLength": 1,
554
+ "maxLength": 80
555
+ }
556
+ },
557
+ "required": [
558
+ "channel_id",
559
+ "name"
560
+ ],
561
+ "additionalProperties": false
562
+ },
563
+ "hidden": false
564
+ },
565
+ {
566
+ "name": "discord_get_webhook",
567
+ "description": "Return one Discord webhook by id",
568
+ "inputSchema": {
569
+ "type": "object",
570
+ "properties": {
571
+ "webhook_id": {
572
+ "type": "string",
573
+ "minLength": 1
574
+ }
575
+ },
576
+ "required": [
577
+ "webhook_id"
578
+ ],
579
+ "additionalProperties": false
580
+ },
581
+ "hidden": false,
582
+ "annotations": {
583
+ "readOnlyHint": true
584
+ }
585
+ },
586
+ {
587
+ "name": "discord_create_interaction_response",
588
+ "description": "Acknowledge one Discord interaction token with a callback response",
589
+ "inputSchema": {
590
+ "$schema": "http://json-schema.org/draft-07/schema#",
591
+ "type": "object",
592
+ "properties": {
593
+ "interaction_id": {
594
+ "type": "string",
595
+ "minLength": 1
596
+ },
597
+ "interaction_token": {
598
+ "type": "string",
599
+ "minLength": 1
600
+ },
601
+ "type": {
602
+ "type": "integer",
603
+ "enum": [
604
+ 4,
605
+ 5,
606
+ 6,
607
+ 7
608
+ ]
609
+ },
610
+ "data": {
611
+ "type": "object",
612
+ "additionalProperties": true
613
+ }
614
+ },
615
+ "required": [
616
+ "interaction_id",
617
+ "interaction_token",
618
+ "type"
619
+ ],
620
+ "additionalProperties": false
621
+ },
622
+ "hidden": false
623
+ },
624
+ {
625
+ "name": "discord_get_interaction_original_response",
626
+ "description": "Return the original response for one Discord interaction token",
627
+ "inputSchema": {
628
+ "type": "object",
629
+ "properties": {
630
+ "application_id": {
631
+ "type": "string",
632
+ "minLength": 1
633
+ },
634
+ "interaction_token": {
635
+ "type": "string",
636
+ "minLength": 1
637
+ }
638
+ },
639
+ "required": [
640
+ "application_id",
641
+ "interaction_token"
642
+ ],
643
+ "additionalProperties": false
644
+ },
645
+ "hidden": false,
646
+ "annotations": {
647
+ "readOnlyHint": true
648
+ }
649
+ },
650
+ {
651
+ "name": "discord_edit_interaction_original_response",
652
+ "description": "Edit or complete the original response for one Discord interaction token",
653
+ "inputSchema": {
654
+ "$schema": "http://json-schema.org/draft-07/schema#",
655
+ "type": "object",
656
+ "properties": {
657
+ "application_id": {
658
+ "type": "string",
659
+ "minLength": 1
660
+ },
661
+ "interaction_token": {
662
+ "type": "string",
663
+ "minLength": 1
664
+ },
665
+ "content": {
666
+ "type": "string",
667
+ "minLength": 1
668
+ },
669
+ "embeds": {
670
+ "type": "array"
671
+ },
672
+ "components": {
673
+ "type": "array"
674
+ },
675
+ "flags": {
676
+ "type": "integer",
677
+ "minimum": 0
678
+ }
679
+ },
680
+ "required": [
681
+ "application_id",
682
+ "interaction_token"
683
+ ],
684
+ "additionalProperties": false
685
+ },
686
+ "hidden": false
687
+ },
688
+ {
689
+ "name": "discord_delete_interaction_original_response",
690
+ "description": "Delete the original response for one Discord interaction token",
691
+ "inputSchema": {
692
+ "type": "object",
693
+ "properties": {
694
+ "application_id": {
695
+ "type": "string",
696
+ "minLength": 1
697
+ },
698
+ "interaction_token": {
699
+ "type": "string",
700
+ "minLength": 1
701
+ }
702
+ },
703
+ "required": [
704
+ "application_id",
705
+ "interaction_token"
706
+ ],
707
+ "additionalProperties": false
708
+ },
709
+ "hidden": false
710
+ },
711
+ {
712
+ "name": "discord_edit_webhook",
713
+ "description": "Edit one Discord webhook",
714
+ "inputSchema": {
715
+ "type": "object",
716
+ "properties": {
717
+ "webhook_id": {
718
+ "type": "string",
719
+ "minLength": 1
720
+ },
721
+ "name": {
722
+ "type": "string",
723
+ "minLength": 1,
724
+ "maxLength": 80
725
+ }
726
+ },
727
+ "required": [
728
+ "webhook_id"
729
+ ],
730
+ "additionalProperties": false
731
+ },
732
+ "hidden": false
733
+ },
734
+ {
735
+ "name": "discord_delete_webhook",
736
+ "description": "Delete one Discord webhook",
737
+ "inputSchema": {
738
+ "type": "object",
739
+ "properties": {
740
+ "webhook_id": {
741
+ "type": "string",
742
+ "minLength": 1
743
+ }
744
+ },
745
+ "required": [
746
+ "webhook_id"
747
+ ],
748
+ "additionalProperties": false
749
+ },
750
+ "hidden": false
751
+ },
752
+ {
753
+ "name": "discord_execute_webhook",
754
+ "description": "Execute a Discord webhook and optionally return the created message",
755
+ "inputSchema": {
756
+ "$schema": "http://json-schema.org/draft-07/schema#",
757
+ "type": "object",
758
+ "properties": {
759
+ "webhook_id": {
760
+ "type": "string",
761
+ "minLength": 1
762
+ },
763
+ "webhook_token": {
764
+ "type": "string",
765
+ "minLength": 1
766
+ },
767
+ "content": {
768
+ "type": "string",
769
+ "minLength": 1
770
+ },
771
+ "wait": {
772
+ "type": "boolean"
773
+ }
774
+ },
775
+ "required": [
776
+ "webhook_id",
777
+ "webhook_token",
778
+ "content"
779
+ ],
780
+ "additionalProperties": false
781
+ },
782
+ "hidden": false
783
+ },
784
+ {
785
+ "name": "discord_get_webhook_message",
786
+ "description": "Return one Discord webhook message",
787
+ "inputSchema": {
788
+ "type": "object",
789
+ "properties": {
790
+ "webhook_id": {
791
+ "type": "string",
792
+ "minLength": 1
793
+ },
794
+ "webhook_token": {
795
+ "type": "string",
796
+ "minLength": 1
797
+ },
798
+ "message_id": {
799
+ "type": "string",
800
+ "minLength": 1
801
+ }
802
+ },
803
+ "required": [
804
+ "webhook_id",
805
+ "webhook_token",
806
+ "message_id"
807
+ ],
808
+ "additionalProperties": false
809
+ },
810
+ "hidden": false,
811
+ "annotations": {
812
+ "readOnlyHint": true
813
+ }
814
+ },
815
+ {
816
+ "name": "discord_edit_webhook_message",
817
+ "description": "Edit one Discord webhook message",
818
+ "inputSchema": {
819
+ "$schema": "http://json-schema.org/draft-07/schema#",
820
+ "type": "object",
821
+ "properties": {
822
+ "webhook_id": {
823
+ "type": "string",
824
+ "minLength": 1
825
+ },
826
+ "webhook_token": {
827
+ "type": "string",
828
+ "minLength": 1
829
+ },
830
+ "message_id": {
831
+ "type": "string",
832
+ "minLength": 1
833
+ },
834
+ "content": {
835
+ "type": "string",
836
+ "minLength": 1
837
+ }
838
+ },
839
+ "required": [
840
+ "webhook_id",
841
+ "webhook_token",
842
+ "message_id",
843
+ "content"
844
+ ],
845
+ "additionalProperties": false
846
+ },
847
+ "hidden": false
848
+ },
849
+ {
850
+ "name": "discord_delete_webhook_message",
851
+ "description": "Delete one Discord webhook message",
852
+ "inputSchema": {
853
+ "type": "object",
854
+ "properties": {
855
+ "webhook_id": {
856
+ "type": "string",
857
+ "minLength": 1
858
+ },
859
+ "webhook_token": {
860
+ "type": "string",
861
+ "minLength": 1
862
+ },
863
+ "message_id": {
864
+ "type": "string",
865
+ "minLength": 1
866
+ }
867
+ },
868
+ "required": [
869
+ "webhook_id",
870
+ "webhook_token",
871
+ "message_id"
872
+ ],
873
+ "additionalProperties": false
874
+ },
875
+ "hidden": false
876
+ },
877
+ {
878
+ "name": "discord_create_message",
879
+ "description": "Create a basic message in a seeded Discord channel as the current bot user",
880
+ "inputSchema": {
881
+ "type": "object",
882
+ "properties": {
883
+ "channel_id": {
884
+ "type": "string",
885
+ "minLength": 1
886
+ },
887
+ "content": {
888
+ "type": "string",
889
+ "minLength": 1
890
+ },
891
+ "nonce": {
892
+ "anyOf": [
893
+ {
894
+ "type": "string",
895
+ "minLength": 1,
896
+ "maxLength": 25
897
+ },
898
+ {
899
+ "type": "integer",
900
+ "minimum": -9007199254740991,
901
+ "maximum": 9007199254740991
902
+ }
903
+ ]
904
+ },
905
+ "tts": {
906
+ "type": "boolean"
907
+ },
908
+ "enforce_nonce": {
909
+ "type": "boolean"
910
+ },
911
+ "embeds": {
912
+ "type": "array",
913
+ "items": {
914
+ "type": "object",
915
+ "propertyNames": {
916
+ "type": "string"
917
+ },
918
+ "additionalProperties": {}
919
+ }
920
+ },
921
+ "components": {
922
+ "type": "array",
923
+ "items": {
924
+ "type": "object",
925
+ "propertyNames": {
926
+ "type": "string"
927
+ },
928
+ "additionalProperties": {}
929
+ }
930
+ },
931
+ "allowed_mentions": {
932
+ "type": "object",
933
+ "propertyNames": {
934
+ "type": "string"
935
+ },
936
+ "additionalProperties": {}
937
+ },
938
+ "message_reference": {
939
+ "type": "object",
940
+ "properties": {
941
+ "message_id": {
942
+ "type": "string",
943
+ "minLength": 1
944
+ }
945
+ },
946
+ "required": [
947
+ "message_id"
948
+ ],
949
+ "additionalProperties": {}
950
+ }
951
+ },
952
+ "required": [
953
+ "channel_id",
954
+ "content"
955
+ ],
956
+ "additionalProperties": false
957
+ },
958
+ "hidden": false
959
+ },
960
+ {
961
+ "name": "discord_edit_message",
962
+ "description": "Edit a message authored by the current bot user",
963
+ "inputSchema": {
964
+ "type": "object",
965
+ "properties": {
966
+ "channel_id": {
967
+ "type": "string",
968
+ "minLength": 1
969
+ },
970
+ "message_id": {
971
+ "type": "string",
972
+ "minLength": 1
973
+ },
974
+ "content": {
975
+ "type": "string",
976
+ "minLength": 1
977
+ },
978
+ "embeds": {
979
+ "type": "array",
980
+ "items": {
981
+ "type": "object",
982
+ "propertyNames": {
983
+ "type": "string"
984
+ },
985
+ "additionalProperties": {}
986
+ }
987
+ },
988
+ "components": {
989
+ "type": "array",
990
+ "items": {
991
+ "type": "object",
992
+ "propertyNames": {
993
+ "type": "string"
994
+ },
995
+ "additionalProperties": {}
996
+ }
997
+ }
998
+ },
999
+ "required": [
1000
+ "channel_id",
1001
+ "message_id"
1002
+ ],
1003
+ "additionalProperties": false
1004
+ },
1005
+ "hidden": false
1006
+ },
1007
+ {
1008
+ "name": "discord_delete_message",
1009
+ "description": "Delete a message authored by the current bot user",
1010
+ "inputSchema": {
1011
+ "type": "object",
1012
+ "properties": {
1013
+ "channel_id": {
1014
+ "type": "string",
1015
+ "minLength": 1
1016
+ },
1017
+ "message_id": {
1018
+ "type": "string",
1019
+ "minLength": 1
1020
+ }
1021
+ },
1022
+ "required": [
1023
+ "channel_id",
1024
+ "message_id"
1025
+ ],
1026
+ "additionalProperties": false
1027
+ },
1028
+ "hidden": false
1029
+ },
1030
+ {
1031
+ "name": "discord_bulk_delete_messages",
1032
+ "description": "Delete multiple messages from one Discord channel",
1033
+ "inputSchema": {
1034
+ "type": "object",
1035
+ "properties": {
1036
+ "channel_id": {
1037
+ "type": "string",
1038
+ "minLength": 1
1039
+ },
1040
+ "messages": {
1041
+ "minItems": 2,
1042
+ "maxItems": 100,
1043
+ "type": "array",
1044
+ "items": {
1045
+ "type": "string",
1046
+ "minLength": 1
1047
+ }
1048
+ }
1049
+ },
1050
+ "required": [
1051
+ "channel_id",
1052
+ "messages"
1053
+ ],
1054
+ "additionalProperties": false
1055
+ },
1056
+ "hidden": false
1057
+ },
1058
+ {
1059
+ "name": "discord_add_reaction",
1060
+ "description": "Add the current bot user reaction to a message",
1061
+ "inputSchema": {
1062
+ "type": "object",
1063
+ "properties": {
1064
+ "channel_id": {
1065
+ "type": "string",
1066
+ "minLength": 1
1067
+ },
1068
+ "message_id": {
1069
+ "type": "string",
1070
+ "minLength": 1
1071
+ },
1072
+ "emoji": {
1073
+ "type": "string",
1074
+ "minLength": 1
1075
+ }
1076
+ },
1077
+ "required": [
1078
+ "channel_id",
1079
+ "message_id",
1080
+ "emoji"
1081
+ ],
1082
+ "additionalProperties": false
1083
+ },
1084
+ "hidden": false
1085
+ },
1086
+ {
1087
+ "name": "discord_list_message_reactions",
1088
+ "description": "List users who reacted to a message with one emoji",
1089
+ "inputSchema": {
1090
+ "type": "object",
1091
+ "properties": {
1092
+ "channel_id": {
1093
+ "type": "string",
1094
+ "minLength": 1
1095
+ },
1096
+ "message_id": {
1097
+ "type": "string",
1098
+ "minLength": 1
1099
+ },
1100
+ "emoji": {
1101
+ "type": "string",
1102
+ "minLength": 1
1103
+ },
1104
+ "limit": {
1105
+ "type": "integer",
1106
+ "minimum": 1,
1107
+ "maximum": 100
1108
+ },
1109
+ "after": {
1110
+ "type": "string",
1111
+ "minLength": 1
1112
+ }
1113
+ },
1114
+ "required": [
1115
+ "channel_id",
1116
+ "message_id",
1117
+ "emoji"
1118
+ ],
1119
+ "additionalProperties": false
1120
+ },
1121
+ "hidden": false,
1122
+ "annotations": {
1123
+ "readOnlyHint": true
1124
+ }
1125
+ },
1126
+ {
1127
+ "name": "discord_remove_own_reaction",
1128
+ "description": "Remove the current bot user reaction from a message",
1129
+ "inputSchema": {
1130
+ "type": "object",
1131
+ "properties": {
1132
+ "channel_id": {
1133
+ "type": "string",
1134
+ "minLength": 1
1135
+ },
1136
+ "message_id": {
1137
+ "type": "string",
1138
+ "minLength": 1
1139
+ },
1140
+ "emoji": {
1141
+ "type": "string",
1142
+ "minLength": 1
1143
+ }
1144
+ },
1145
+ "required": [
1146
+ "channel_id",
1147
+ "message_id",
1148
+ "emoji"
1149
+ ],
1150
+ "additionalProperties": false
1151
+ },
1152
+ "hidden": false
1153
+ },
1154
+ {
1155
+ "name": "discord_get_pinned_messages",
1156
+ "description": "List pinned messages for a seeded Discord channel",
1157
+ "inputSchema": {
1158
+ "type": "object",
1159
+ "properties": {
1160
+ "channel_id": {
1161
+ "type": "string",
1162
+ "minLength": 1
1163
+ }
1164
+ },
1165
+ "required": [
1166
+ "channel_id"
1167
+ ],
1168
+ "additionalProperties": false
1169
+ },
1170
+ "hidden": false,
1171
+ "annotations": {
1172
+ "readOnlyHint": true
1173
+ }
1174
+ },
1175
+ {
1176
+ "name": "discord_pin_message",
1177
+ "description": "Pin a message in a seeded Discord channel",
1178
+ "inputSchema": {
1179
+ "type": "object",
1180
+ "properties": {
1181
+ "channel_id": {
1182
+ "type": "string",
1183
+ "minLength": 1
1184
+ },
1185
+ "message_id": {
1186
+ "type": "string",
1187
+ "minLength": 1
1188
+ }
1189
+ },
1190
+ "required": [
1191
+ "channel_id",
1192
+ "message_id"
1193
+ ],
1194
+ "additionalProperties": false
1195
+ },
1196
+ "hidden": false
1197
+ },
1198
+ {
1199
+ "name": "discord_unpin_message",
1200
+ "description": "Unpin a message in a seeded Discord channel",
1201
+ "inputSchema": {
1202
+ "type": "object",
1203
+ "properties": {
1204
+ "channel_id": {
1205
+ "type": "string",
1206
+ "minLength": 1
1207
+ },
1208
+ "message_id": {
1209
+ "type": "string",
1210
+ "minLength": 1
1211
+ }
1212
+ },
1213
+ "required": [
1214
+ "channel_id",
1215
+ "message_id"
1216
+ ],
1217
+ "additionalProperties": false
1218
+ },
1219
+ "hidden": false
1220
+ },
1221
+ {
1222
+ "name": "discord_create_guild_role",
1223
+ "description": "Create a role in a Discord guild",
1224
+ "inputSchema": {
1225
+ "type": "object",
1226
+ "properties": {
1227
+ "guild_id": {
1228
+ "type": "string",
1229
+ "minLength": 1
1230
+ },
1231
+ "name": {
1232
+ "type": "string",
1233
+ "minLength": 1,
1234
+ "maxLength": 100
1235
+ },
1236
+ "permissions": {
1237
+ "type": "string",
1238
+ "minLength": 1
1239
+ },
1240
+ "color": {
1241
+ "type": "integer",
1242
+ "minimum": 0,
1243
+ "maximum": 9007199254740991
1244
+ },
1245
+ "hoist": {
1246
+ "type": "boolean"
1247
+ },
1248
+ "mentionable": {
1249
+ "type": "boolean"
1250
+ }
1251
+ },
1252
+ "required": [
1253
+ "guild_id",
1254
+ "name"
1255
+ ],
1256
+ "additionalProperties": false
1257
+ },
1258
+ "hidden": false
1259
+ },
1260
+ {
1261
+ "name": "discord_edit_guild_role",
1262
+ "description": "Edit a role in a Discord guild",
1263
+ "inputSchema": {
1264
+ "type": "object",
1265
+ "properties": {
1266
+ "guild_id": {
1267
+ "type": "string",
1268
+ "minLength": 1
1269
+ },
1270
+ "role_id": {
1271
+ "type": "string",
1272
+ "minLength": 1
1273
+ },
1274
+ "name": {
1275
+ "type": "string",
1276
+ "minLength": 1,
1277
+ "maxLength": 100
1278
+ },
1279
+ "permissions": {
1280
+ "type": "string",
1281
+ "minLength": 1
1282
+ },
1283
+ "color": {
1284
+ "type": "integer",
1285
+ "minimum": 0,
1286
+ "maximum": 9007199254740991
1287
+ },
1288
+ "hoist": {
1289
+ "type": "boolean"
1290
+ },
1291
+ "mentionable": {
1292
+ "type": "boolean"
1293
+ }
1294
+ },
1295
+ "required": [
1296
+ "guild_id",
1297
+ "role_id"
1298
+ ],
1299
+ "additionalProperties": false
1300
+ },
1301
+ "hidden": false
1302
+ },
1303
+ {
1304
+ "name": "discord_delete_guild_role",
1305
+ "description": "Delete a role from a Discord guild",
1306
+ "inputSchema": {
1307
+ "type": "object",
1308
+ "properties": {
1309
+ "guild_id": {
1310
+ "type": "string",
1311
+ "minLength": 1
1312
+ },
1313
+ "role_id": {
1314
+ "type": "string",
1315
+ "minLength": 1
1316
+ }
1317
+ },
1318
+ "required": [
1319
+ "guild_id",
1320
+ "role_id"
1321
+ ],
1322
+ "additionalProperties": false
1323
+ },
1324
+ "hidden": false
1325
+ },
1326
+ {
1327
+ "name": "discord_add_guild_member_role",
1328
+ "description": "Assign a role to a Discord guild member",
1329
+ "inputSchema": {
1330
+ "type": "object",
1331
+ "properties": {
1332
+ "guild_id": {
1333
+ "type": "string",
1334
+ "minLength": 1
1335
+ },
1336
+ "user_id": {
1337
+ "type": "string",
1338
+ "minLength": 1
1339
+ },
1340
+ "role_id": {
1341
+ "type": "string",
1342
+ "minLength": 1
1343
+ }
1344
+ },
1345
+ "required": [
1346
+ "guild_id",
1347
+ "user_id",
1348
+ "role_id"
1349
+ ],
1350
+ "additionalProperties": false
1351
+ },
1352
+ "hidden": false
1353
+ },
1354
+ {
1355
+ "name": "discord_remove_guild_member_role",
1356
+ "description": "Remove a role from a Discord guild member",
1357
+ "inputSchema": {
1358
+ "type": "object",
1359
+ "properties": {
1360
+ "guild_id": {
1361
+ "type": "string",
1362
+ "minLength": 1
1363
+ },
1364
+ "user_id": {
1365
+ "type": "string",
1366
+ "minLength": 1
1367
+ },
1368
+ "role_id": {
1369
+ "type": "string",
1370
+ "minLength": 1
1371
+ }
1372
+ },
1373
+ "required": [
1374
+ "guild_id",
1375
+ "user_id",
1376
+ "role_id"
1377
+ ],
1378
+ "additionalProperties": false
1379
+ },
1380
+ "hidden": false
1381
+ },
1382
+ {
1383
+ "name": "discord_start_thread_from_message",
1384
+ "description": "Start a public thread from one Discord message",
1385
+ "inputSchema": {
1386
+ "type": "object",
1387
+ "properties": {
1388
+ "channel_id": {
1389
+ "type": "string",
1390
+ "minLength": 1
1391
+ },
1392
+ "message_id": {
1393
+ "type": "string",
1394
+ "minLength": 1
1395
+ },
1396
+ "name": {
1397
+ "type": "string",
1398
+ "minLength": 1,
1399
+ "maxLength": 100
1400
+ },
1401
+ "auto_archive_duration": {
1402
+ "type": "integer",
1403
+ "exclusiveMinimum": 0,
1404
+ "maximum": 9007199254740991
1405
+ }
1406
+ },
1407
+ "required": [
1408
+ "channel_id",
1409
+ "message_id",
1410
+ "name"
1411
+ ],
1412
+ "additionalProperties": false
1413
+ },
1414
+ "hidden": false
1415
+ },
1416
+ {
1417
+ "name": "discord_start_thread_without_message",
1418
+ "description": "Start a standalone public or private thread",
1419
+ "inputSchema": {
1420
+ "type": "object",
1421
+ "properties": {
1422
+ "channel_id": {
1423
+ "type": "string",
1424
+ "minLength": 1
1425
+ },
1426
+ "name": {
1427
+ "type": "string",
1428
+ "minLength": 1,
1429
+ "maxLength": 100
1430
+ },
1431
+ "auto_archive_duration": {
1432
+ "type": "integer",
1433
+ "exclusiveMinimum": 0,
1434
+ "maximum": 9007199254740991
1435
+ },
1436
+ "type": {
1437
+ "anyOf": [
1438
+ {
1439
+ "type": "number",
1440
+ "const": 11
1441
+ },
1442
+ {
1443
+ "type": "number",
1444
+ "const": 12
1445
+ }
1446
+ ]
1447
+ },
1448
+ "invitable": {
1449
+ "type": "boolean"
1450
+ }
1451
+ },
1452
+ "required": [
1453
+ "channel_id",
1454
+ "name",
1455
+ "type"
1456
+ ],
1457
+ "additionalProperties": false
1458
+ },
1459
+ "hidden": false
1460
+ },
1461
+ {
1462
+ "name": "discord_list_active_guild_threads",
1463
+ "description": "List active threads for one Discord guild",
1464
+ "inputSchema": {
1465
+ "type": "object",
1466
+ "properties": {
1467
+ "guild_id": {
1468
+ "type": "string",
1469
+ "minLength": 1
1470
+ }
1471
+ },
1472
+ "required": [
1473
+ "guild_id"
1474
+ ],
1475
+ "additionalProperties": false
1476
+ },
1477
+ "hidden": false,
1478
+ "annotations": {
1479
+ "readOnlyHint": true
1480
+ }
1481
+ },
1482
+ {
1483
+ "name": "discord_get_thread_member",
1484
+ "description": "Return one Discord thread member by thread and user id",
1485
+ "inputSchema": {
1486
+ "type": "object",
1487
+ "properties": {
1488
+ "channel_id": {
1489
+ "type": "string",
1490
+ "minLength": 1
1491
+ },
1492
+ "user_id": {
1493
+ "type": "string",
1494
+ "minLength": 1
1495
+ }
1496
+ },
1497
+ "required": [
1498
+ "channel_id",
1499
+ "user_id"
1500
+ ],
1501
+ "additionalProperties": false
1502
+ },
1503
+ "hidden": false,
1504
+ "annotations": {
1505
+ "readOnlyHint": true
1506
+ }
1507
+ },
1508
+ {
1509
+ "name": "discord_list_thread_members",
1510
+ "description": "List members for one Discord thread",
1511
+ "inputSchema": {
1512
+ "type": "object",
1513
+ "properties": {
1514
+ "channel_id": {
1515
+ "type": "string",
1516
+ "minLength": 1
1517
+ }
1518
+ },
1519
+ "required": [
1520
+ "channel_id"
1521
+ ],
1522
+ "additionalProperties": false
1523
+ },
1524
+ "hidden": false,
1525
+ "annotations": {
1526
+ "readOnlyHint": true
1527
+ }
1528
+ },
1529
+ {
1530
+ "name": "discord_list_public_archived_threads",
1531
+ "description": "List archived public threads for one Discord channel",
1532
+ "inputSchema": {
1533
+ "type": "object",
1534
+ "properties": {
1535
+ "channel_id": {
1536
+ "type": "string",
1537
+ "minLength": 1
1538
+ },
1539
+ "before": {
1540
+ "type": "string"
1541
+ },
1542
+ "limit": {
1543
+ "type": "integer",
1544
+ "minimum": 1,
1545
+ "maximum": 100
1546
+ }
1547
+ },
1548
+ "required": [
1549
+ "channel_id"
1550
+ ],
1551
+ "additionalProperties": false
1552
+ },
1553
+ "hidden": false,
1554
+ "annotations": {
1555
+ "readOnlyHint": true
1556
+ }
1557
+ },
1558
+ {
1559
+ "name": "discord_list_private_archived_threads",
1560
+ "description": "List archived private threads for one Discord channel",
1561
+ "inputSchema": {
1562
+ "type": "object",
1563
+ "properties": {
1564
+ "channel_id": {
1565
+ "type": "string",
1566
+ "minLength": 1
1567
+ },
1568
+ "before": {
1569
+ "type": "string"
1570
+ },
1571
+ "limit": {
1572
+ "type": "integer",
1573
+ "minimum": 1,
1574
+ "maximum": 100
1575
+ }
1576
+ },
1577
+ "required": [
1578
+ "channel_id"
1579
+ ],
1580
+ "additionalProperties": false
1581
+ },
1582
+ "hidden": false,
1583
+ "annotations": {
1584
+ "readOnlyHint": true
1585
+ }
1586
+ },
1587
+ {
1588
+ "name": "discord_list_joined_private_archived_threads",
1589
+ "description": "List archived private threads joined by the current bot",
1590
+ "inputSchema": {
1591
+ "type": "object",
1592
+ "properties": {
1593
+ "channel_id": {
1594
+ "type": "string",
1595
+ "minLength": 1
1596
+ },
1597
+ "before": {
1598
+ "type": "string"
1599
+ },
1600
+ "limit": {
1601
+ "type": "integer",
1602
+ "minimum": 1,
1603
+ "maximum": 100
1604
+ }
1605
+ },
1606
+ "required": [
1607
+ "channel_id"
1608
+ ],
1609
+ "additionalProperties": false
1610
+ },
1611
+ "hidden": false,
1612
+ "annotations": {
1613
+ "readOnlyHint": true
1614
+ }
1615
+ },
1616
+ {
1617
+ "name": "discord_add_thread_member",
1618
+ "description": "Add a member to a Discord thread",
1619
+ "inputSchema": {
1620
+ "type": "object",
1621
+ "properties": {
1622
+ "channel_id": {
1623
+ "type": "string",
1624
+ "minLength": 1
1625
+ },
1626
+ "user_id": {
1627
+ "type": "string",
1628
+ "minLength": 1
1629
+ }
1630
+ },
1631
+ "required": [
1632
+ "channel_id",
1633
+ "user_id"
1634
+ ],
1635
+ "additionalProperties": false
1636
+ },
1637
+ "hidden": false
1638
+ },
1639
+ {
1640
+ "name": "discord_join_thread",
1641
+ "description": "Join the current bot user to one Discord thread",
1642
+ "inputSchema": {
1643
+ "type": "object",
1644
+ "properties": {
1645
+ "channel_id": {
1646
+ "type": "string",
1647
+ "minLength": 1
1648
+ }
1649
+ },
1650
+ "required": [
1651
+ "channel_id"
1652
+ ],
1653
+ "additionalProperties": false
1654
+ },
1655
+ "hidden": false
1656
+ },
1657
+ {
1658
+ "name": "discord_remove_thread_member",
1659
+ "description": "Remove a member from a Discord thread",
1660
+ "inputSchema": {
1661
+ "type": "object",
1662
+ "properties": {
1663
+ "channel_id": {
1664
+ "type": "string",
1665
+ "minLength": 1
1666
+ },
1667
+ "user_id": {
1668
+ "type": "string",
1669
+ "minLength": 1
1670
+ }
1671
+ },
1672
+ "required": [
1673
+ "channel_id",
1674
+ "user_id"
1675
+ ],
1676
+ "additionalProperties": false
1677
+ },
1678
+ "hidden": false
1679
+ },
1680
+ {
1681
+ "name": "discord_leave_thread",
1682
+ "description": "Leave the current bot user from one Discord thread",
1683
+ "inputSchema": {
1684
+ "type": "object",
1685
+ "properties": {
1686
+ "channel_id": {
1687
+ "type": "string",
1688
+ "minLength": 1
1689
+ }
1690
+ },
1691
+ "required": [
1692
+ "channel_id"
1693
+ ],
1694
+ "additionalProperties": false
1695
+ },
1696
+ "hidden": false
1697
+ },
1698
+ {
1699
+ "name": "discord_delete_thread",
1700
+ "description": "Delete one Discord thread channel",
1701
+ "inputSchema": {
1702
+ "type": "object",
1703
+ "properties": {
1704
+ "channel_id": {
1705
+ "type": "string",
1706
+ "minLength": 1
1707
+ }
1708
+ },
1709
+ "required": [
1710
+ "channel_id"
1711
+ ],
1712
+ "additionalProperties": false
1713
+ },
1714
+ "hidden": false
1715
+ },
1716
+ {
1717
+ "name": "discord_list_guild_application_commands",
1718
+ "description": "List guild application commands for the current Discord application",
1719
+ "inputSchema": {
1720
+ "type": "object",
1721
+ "properties": {
1722
+ "guild_id": {
1723
+ "type": "string",
1724
+ "minLength": 1
1725
+ }
1726
+ },
1727
+ "required": [
1728
+ "guild_id"
1729
+ ],
1730
+ "additionalProperties": false
1731
+ },
1732
+ "hidden": false,
1733
+ "annotations": {
1734
+ "readOnlyHint": true
1735
+ }
1736
+ },
1737
+ {
1738
+ "name": "discord_get_guild_application_command",
1739
+ "description": "Return one guild application command for the current Discord application",
1740
+ "inputSchema": {
1741
+ "type": "object",
1742
+ "properties": {
1743
+ "guild_id": {
1744
+ "type": "string",
1745
+ "minLength": 1
1746
+ },
1747
+ "command_id": {
1748
+ "type": "string",
1749
+ "minLength": 1
1750
+ }
1751
+ },
1752
+ "required": [
1753
+ "guild_id",
1754
+ "command_id"
1755
+ ],
1756
+ "additionalProperties": false
1757
+ },
1758
+ "hidden": false,
1759
+ "annotations": {
1760
+ "readOnlyHint": true
1761
+ }
1762
+ },
1763
+ {
1764
+ "name": "discord_create_guild_application_command",
1765
+ "description": "Create a guild application command for the current Discord application",
1766
+ "inputSchema": {
1767
+ "type": "object",
1768
+ "properties": {
1769
+ "guild_id": {
1770
+ "type": "string",
1771
+ "minLength": 1
1772
+ },
1773
+ "name": {
1774
+ "type": "string",
1775
+ "minLength": 1,
1776
+ "maxLength": 32,
1777
+ "pattern": "^[a-z0-9_-]+$"
1778
+ },
1779
+ "description": {
1780
+ "type": "string",
1781
+ "minLength": 1,
1782
+ "maxLength": 100
1783
+ },
1784
+ "options": {
1785
+ "type": "array",
1786
+ "items": {}
1787
+ },
1788
+ "default_member_permissions": {
1789
+ "anyOf": [
1790
+ {
1791
+ "type": "string",
1792
+ "minLength": 1
1793
+ },
1794
+ {
1795
+ "type": "null"
1796
+ }
1797
+ ]
1798
+ },
1799
+ "nsfw": {
1800
+ "type": "boolean"
1801
+ }
1802
+ },
1803
+ "required": [
1804
+ "guild_id",
1805
+ "name",
1806
+ "description"
1807
+ ],
1808
+ "additionalProperties": false
1809
+ },
1810
+ "hidden": false
1811
+ },
1812
+ {
1813
+ "name": "discord_edit_guild_application_command",
1814
+ "description": "Edit a guild application command for the current Discord application",
1815
+ "inputSchema": {
1816
+ "type": "object",
1817
+ "properties": {
1818
+ "guild_id": {
1819
+ "type": "string",
1820
+ "minLength": 1
1821
+ },
1822
+ "command_id": {
1823
+ "type": "string",
1824
+ "minLength": 1
1825
+ },
1826
+ "name": {
1827
+ "type": "string",
1828
+ "minLength": 1,
1829
+ "maxLength": 32,
1830
+ "pattern": "^[a-z0-9_-]+$"
1831
+ },
1832
+ "description": {
1833
+ "type": "string",
1834
+ "minLength": 1,
1835
+ "maxLength": 100
1836
+ },
1837
+ "options": {
1838
+ "type": "array",
1839
+ "items": {}
1840
+ },
1841
+ "default_member_permissions": {
1842
+ "anyOf": [
1843
+ {
1844
+ "type": "string",
1845
+ "minLength": 1
1846
+ },
1847
+ {
1848
+ "type": "null"
1849
+ }
1850
+ ]
1851
+ },
1852
+ "nsfw": {
1853
+ "type": "boolean"
1854
+ }
1855
+ },
1856
+ "required": [
1857
+ "guild_id",
1858
+ "command_id"
1859
+ ],
1860
+ "additionalProperties": false
1861
+ },
1862
+ "hidden": false
1863
+ },
1864
+ {
1865
+ "name": "discord_delete_guild_application_command",
1866
+ "description": "Delete a guild application command for the current Discord application",
1867
+ "inputSchema": {
1868
+ "type": "object",
1869
+ "properties": {
1870
+ "guild_id": {
1871
+ "type": "string",
1872
+ "minLength": 1
1873
+ },
1874
+ "command_id": {
1875
+ "type": "string",
1876
+ "minLength": 1
1877
+ }
1878
+ },
1879
+ "required": [
1880
+ "guild_id",
1881
+ "command_id"
1882
+ ],
1883
+ "additionalProperties": false
1884
+ },
1885
+ "hidden": false
1886
+ },
1887
+ {
1888
+ "name": "discord_bulk_overwrite_guild_application_commands",
1889
+ "description": "Replace the guild application command set for the current Discord application",
1890
+ "inputSchema": {
1891
+ "type": "object",
1892
+ "properties": {
1893
+ "guild_id": {
1894
+ "type": "string",
1895
+ "minLength": 1
1896
+ },
1897
+ "commands": {
1898
+ "type": "array",
1899
+ "items": {
1900
+ "type": "object",
1901
+ "properties": {
1902
+ "id": {
1903
+ "type": "string",
1904
+ "minLength": 1
1905
+ },
1906
+ "name": {
1907
+ "type": "string",
1908
+ "minLength": 1,
1909
+ "maxLength": 32,
1910
+ "pattern": "^[a-z0-9_-]+$"
1911
+ },
1912
+ "description": {
1913
+ "type": "string",
1914
+ "minLength": 1,
1915
+ "maxLength": 100
1916
+ },
1917
+ "options": {
1918
+ "type": "array",
1919
+ "items": {}
1920
+ },
1921
+ "default_member_permissions": {
1922
+ "anyOf": [
1923
+ {
1924
+ "type": "string",
1925
+ "minLength": 1
1926
+ },
1927
+ {
1928
+ "type": "null"
1929
+ }
1930
+ ]
1931
+ },
1932
+ "nsfw": {
1933
+ "type": "boolean"
1934
+ }
1935
+ },
1936
+ "required": [
1937
+ "name",
1938
+ "description"
1939
+ ],
1940
+ "additionalProperties": {}
1941
+ }
1942
+ }
1943
+ },
1944
+ "required": [
1945
+ "guild_id",
1946
+ "commands"
1947
+ ],
1948
+ "additionalProperties": false
1949
+ },
1950
+ "hidden": false
1951
+ }
1952
+ ]
1953
+ }