@wplaunchify/ml-mcp-server 2.0.1 → 2.1.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.
@@ -0,0 +1,905 @@
1
+ import { Tool } from '@modelcontextprotocol/sdk/types.js';
2
+ export declare const fluentCommunityCoreTools: Tool[];
3
+ export declare const fluentCommunityCoreHandlers: {
4
+ fc_list_posts: (args: any) => Promise<{
5
+ toolResult: {
6
+ content: {
7
+ type: string;
8
+ text: string;
9
+ }[];
10
+ isError?: undefined;
11
+ };
12
+ } | {
13
+ toolResult: {
14
+ isError: boolean;
15
+ content: {
16
+ type: string;
17
+ text: string;
18
+ }[];
19
+ };
20
+ }>;
21
+ fc_get_post: (args: any) => Promise<{
22
+ toolResult: {
23
+ content: {
24
+ type: string;
25
+ text: string;
26
+ }[];
27
+ isError?: undefined;
28
+ };
29
+ } | {
30
+ toolResult: {
31
+ isError: boolean;
32
+ content: {
33
+ type: string;
34
+ text: string;
35
+ }[];
36
+ };
37
+ }>;
38
+ fc_create_post: (args: any) => Promise<{
39
+ toolResult: {
40
+ content: {
41
+ type: string;
42
+ text: string;
43
+ }[];
44
+ isError?: undefined;
45
+ };
46
+ } | {
47
+ toolResult: {
48
+ isError: boolean;
49
+ content: {
50
+ type: string;
51
+ text: string;
52
+ }[];
53
+ };
54
+ }>;
55
+ fc_update_post: (args: any) => Promise<{
56
+ toolResult: {
57
+ content: {
58
+ type: string;
59
+ text: string;
60
+ }[];
61
+ isError?: undefined;
62
+ };
63
+ } | {
64
+ toolResult: {
65
+ isError: boolean;
66
+ content: {
67
+ type: string;
68
+ text: string;
69
+ }[];
70
+ };
71
+ }>;
72
+ fc_delete_post: (args: any) => Promise<{
73
+ toolResult: {
74
+ content: {
75
+ type: string;
76
+ text: string;
77
+ }[];
78
+ isError?: undefined;
79
+ };
80
+ } | {
81
+ toolResult: {
82
+ isError: boolean;
83
+ content: {
84
+ type: string;
85
+ text: string;
86
+ }[];
87
+ };
88
+ }>;
89
+ fc_list_spaces: (args: any) => Promise<{
90
+ toolResult: {
91
+ content: {
92
+ type: string;
93
+ text: string;
94
+ }[];
95
+ isError?: undefined;
96
+ };
97
+ } | {
98
+ toolResult: {
99
+ isError: boolean;
100
+ content: {
101
+ type: string;
102
+ text: string;
103
+ }[];
104
+ };
105
+ }>;
106
+ fc_get_space: (args: any) => Promise<{
107
+ toolResult: {
108
+ content: {
109
+ type: string;
110
+ text: string;
111
+ }[];
112
+ isError?: undefined;
113
+ };
114
+ } | {
115
+ toolResult: {
116
+ isError: boolean;
117
+ content: {
118
+ type: string;
119
+ text: string;
120
+ }[];
121
+ };
122
+ }>;
123
+ fc_create_space: (args: any) => Promise<{
124
+ toolResult: {
125
+ content: {
126
+ type: string;
127
+ text: string;
128
+ }[];
129
+ isError?: undefined;
130
+ };
131
+ } | {
132
+ toolResult: {
133
+ isError: boolean;
134
+ content: {
135
+ type: string;
136
+ text: string;
137
+ }[];
138
+ };
139
+ }>;
140
+ fc_update_space: (args: any) => Promise<{
141
+ toolResult: {
142
+ content: {
143
+ type: string;
144
+ text: string;
145
+ }[];
146
+ isError?: undefined;
147
+ };
148
+ } | {
149
+ toolResult: {
150
+ isError: boolean;
151
+ content: {
152
+ type: string;
153
+ text: string;
154
+ }[];
155
+ };
156
+ }>;
157
+ fc_list_comments: (args: any) => Promise<{
158
+ toolResult: {
159
+ content: {
160
+ type: string;
161
+ text: string;
162
+ }[];
163
+ isError?: undefined;
164
+ };
165
+ } | {
166
+ toolResult: {
167
+ isError: boolean;
168
+ content: {
169
+ type: string;
170
+ text: string;
171
+ }[];
172
+ };
173
+ }>;
174
+ fc_create_comment: (args: any) => Promise<{
175
+ toolResult: {
176
+ content: {
177
+ type: string;
178
+ text: string;
179
+ }[];
180
+ isError?: undefined;
181
+ };
182
+ } | {
183
+ toolResult: {
184
+ isError: boolean;
185
+ content: {
186
+ type: string;
187
+ text: string;
188
+ }[];
189
+ };
190
+ }>;
191
+ fc_update_comment: (args: any) => Promise<{
192
+ toolResult: {
193
+ content: {
194
+ type: string;
195
+ text: string;
196
+ }[];
197
+ isError?: undefined;
198
+ };
199
+ } | {
200
+ toolResult: {
201
+ isError: boolean;
202
+ content: {
203
+ type: string;
204
+ text: string;
205
+ }[];
206
+ };
207
+ }>;
208
+ fc_delete_comment: (args: any) => Promise<{
209
+ toolResult: {
210
+ content: {
211
+ type: string;
212
+ text: string;
213
+ }[];
214
+ isError?: undefined;
215
+ };
216
+ } | {
217
+ toolResult: {
218
+ isError: boolean;
219
+ content: {
220
+ type: string;
221
+ text: string;
222
+ }[];
223
+ };
224
+ }>;
225
+ fc_list_space_members: (args: any) => Promise<{
226
+ toolResult: {
227
+ content: {
228
+ type: string;
229
+ text: string;
230
+ }[];
231
+ isError?: undefined;
232
+ };
233
+ } | {
234
+ toolResult: {
235
+ isError: boolean;
236
+ content: {
237
+ type: string;
238
+ text: string;
239
+ }[];
240
+ };
241
+ }>;
242
+ fc_add_space_member: (args: any) => Promise<{
243
+ toolResult: {
244
+ content: {
245
+ type: string;
246
+ text: string;
247
+ }[];
248
+ isError?: undefined;
249
+ };
250
+ } | {
251
+ toolResult: {
252
+ isError: boolean;
253
+ content: {
254
+ type: string;
255
+ text: string;
256
+ }[];
257
+ };
258
+ }>;
259
+ fc_remove_space_member: (args: any) => Promise<{
260
+ toolResult: {
261
+ content: {
262
+ type: string;
263
+ text: string;
264
+ }[];
265
+ isError?: undefined;
266
+ };
267
+ } | {
268
+ toolResult: {
269
+ isError: boolean;
270
+ content: {
271
+ type: string;
272
+ text: string;
273
+ }[];
274
+ };
275
+ }>;
276
+ fc_register_member: (args: any) => Promise<{
277
+ toolResult: {
278
+ content: {
279
+ type: string;
280
+ text: string;
281
+ }[];
282
+ isError?: undefined;
283
+ };
284
+ } | {
285
+ toolResult: {
286
+ isError: boolean;
287
+ content: {
288
+ type: string;
289
+ text: string;
290
+ }[];
291
+ };
292
+ }>;
293
+ fc_list_space_groups: (args: any) => Promise<{
294
+ toolResult: {
295
+ content: {
296
+ type: string;
297
+ text: string;
298
+ }[];
299
+ isError?: undefined;
300
+ };
301
+ } | {
302
+ toolResult: {
303
+ isError: boolean;
304
+ content: {
305
+ type: string;
306
+ text: string;
307
+ }[];
308
+ };
309
+ }>;
310
+ fc_get_space_group: (args: any) => Promise<{
311
+ toolResult: {
312
+ content: {
313
+ type: string;
314
+ text: string;
315
+ }[];
316
+ isError?: undefined;
317
+ };
318
+ } | {
319
+ toolResult: {
320
+ isError: boolean;
321
+ content: {
322
+ type: string;
323
+ text: string;
324
+ }[];
325
+ };
326
+ }>;
327
+ fc_create_space_group: (args: any) => Promise<{
328
+ toolResult: {
329
+ content: {
330
+ type: string;
331
+ text: string;
332
+ }[];
333
+ isError?: undefined;
334
+ };
335
+ } | {
336
+ toolResult: {
337
+ isError: boolean;
338
+ content: {
339
+ type: string;
340
+ text: string;
341
+ }[];
342
+ };
343
+ }>;
344
+ fc_update_space_group: (args: any) => Promise<{
345
+ toolResult: {
346
+ content: {
347
+ type: string;
348
+ text: string;
349
+ }[];
350
+ isError?: undefined;
351
+ };
352
+ } | {
353
+ toolResult: {
354
+ isError: boolean;
355
+ content: {
356
+ type: string;
357
+ text: string;
358
+ }[];
359
+ };
360
+ }>;
361
+ fc_delete_space_group: (args: any) => Promise<{
362
+ toolResult: {
363
+ content: {
364
+ type: string;
365
+ text: string;
366
+ }[];
367
+ isError?: undefined;
368
+ };
369
+ } | {
370
+ toolResult: {
371
+ isError: boolean;
372
+ content: {
373
+ type: string;
374
+ text: string;
375
+ }[];
376
+ };
377
+ }>;
378
+ fc_list_managers: (args: any) => Promise<{
379
+ toolResult: {
380
+ content: {
381
+ type: string;
382
+ text: string;
383
+ }[];
384
+ isError?: undefined;
385
+ };
386
+ } | {
387
+ toolResult: {
388
+ isError: boolean;
389
+ content: {
390
+ type: string;
391
+ text: string;
392
+ }[];
393
+ };
394
+ }>;
395
+ fc_add_manager: (args: any) => Promise<{
396
+ toolResult: {
397
+ content: {
398
+ type: string;
399
+ text: string;
400
+ }[];
401
+ isError?: undefined;
402
+ };
403
+ } | {
404
+ toolResult: {
405
+ isError: boolean;
406
+ content: {
407
+ type: string;
408
+ text: string;
409
+ }[];
410
+ };
411
+ }>;
412
+ fc_remove_manager: (args: any) => Promise<{
413
+ toolResult: {
414
+ content: {
415
+ type: string;
416
+ text: string;
417
+ }[];
418
+ isError?: undefined;
419
+ };
420
+ } | {
421
+ toolResult: {
422
+ isError: boolean;
423
+ content: {
424
+ type: string;
425
+ text: string;
426
+ }[];
427
+ };
428
+ }>;
429
+ fc_search_content: (args: any) => Promise<{
430
+ toolResult: {
431
+ content: {
432
+ type: string;
433
+ text: string;
434
+ }[];
435
+ isError?: undefined;
436
+ };
437
+ } | {
438
+ toolResult: {
439
+ isError: boolean;
440
+ content: {
441
+ type: string;
442
+ text: string;
443
+ }[];
444
+ };
445
+ }>;
446
+ fc_get_space_analytics: (args: any) => Promise<{
447
+ toolResult: {
448
+ content: {
449
+ type: string;
450
+ text: string;
451
+ }[];
452
+ isError?: undefined;
453
+ };
454
+ } | {
455
+ toolResult: {
456
+ isError: boolean;
457
+ content: {
458
+ type: string;
459
+ text: string;
460
+ }[];
461
+ };
462
+ }>;
463
+ fc_bulk_create_posts: (args: any) => Promise<{
464
+ toolResult: {
465
+ content: {
466
+ type: string;
467
+ text: string;
468
+ }[];
469
+ isError?: undefined;
470
+ };
471
+ } | {
472
+ toolResult: {
473
+ isError: boolean;
474
+ content: {
475
+ type: string;
476
+ text: string;
477
+ }[];
478
+ };
479
+ }>;
480
+ fc_bulk_update_posts: (args: any) => Promise<{
481
+ toolResult: {
482
+ content: {
483
+ type: string;
484
+ text: string;
485
+ }[];
486
+ isError?: undefined;
487
+ };
488
+ } | {
489
+ toolResult: {
490
+ isError: boolean;
491
+ content: {
492
+ type: string;
493
+ text: string;
494
+ }[];
495
+ };
496
+ }>;
497
+ fc_bulk_delete_posts: (args: any) => Promise<{
498
+ toolResult: {
499
+ content: {
500
+ type: string;
501
+ text: string;
502
+ }[];
503
+ isError?: undefined;
504
+ };
505
+ } | {
506
+ toolResult: {
507
+ isError: boolean;
508
+ content: {
509
+ type: string;
510
+ text: string;
511
+ }[];
512
+ };
513
+ }>;
514
+ fc_list_profiles: (args: any) => Promise<{
515
+ toolResult: {
516
+ content: {
517
+ type: string;
518
+ text: string;
519
+ }[];
520
+ isError?: undefined;
521
+ };
522
+ } | {
523
+ toolResult: {
524
+ isError: boolean;
525
+ content: {
526
+ type: string;
527
+ text: string;
528
+ }[];
529
+ };
530
+ }>;
531
+ fc_get_profile: (args: any) => Promise<{
532
+ toolResult: {
533
+ content: {
534
+ type: string;
535
+ text: string;
536
+ }[];
537
+ isError?: undefined;
538
+ };
539
+ } | {
540
+ toolResult: {
541
+ isError: boolean;
542
+ content: {
543
+ type: string;
544
+ text: string;
545
+ }[];
546
+ };
547
+ }>;
548
+ fc_update_profile: (args: any) => Promise<{
549
+ toolResult: {
550
+ content: {
551
+ type: string;
552
+ text: string;
553
+ }[];
554
+ isError?: undefined;
555
+ };
556
+ } | {
557
+ toolResult: {
558
+ isError: boolean;
559
+ content: {
560
+ type: string;
561
+ text: string;
562
+ }[];
563
+ };
564
+ }>;
565
+ fc_list_activities: (args: any) => Promise<{
566
+ toolResult: {
567
+ content: {
568
+ type: string;
569
+ text: string;
570
+ }[];
571
+ isError?: undefined;
572
+ };
573
+ } | {
574
+ toolResult: {
575
+ isError: boolean;
576
+ content: {
577
+ type: string;
578
+ text: string;
579
+ }[];
580
+ };
581
+ }>;
582
+ fc_list_reactions: (args: any) => Promise<{
583
+ toolResult: {
584
+ content: {
585
+ type: string;
586
+ text: string;
587
+ }[];
588
+ isError?: undefined;
589
+ };
590
+ } | {
591
+ toolResult: {
592
+ isError: boolean;
593
+ content: {
594
+ type: string;
595
+ text: string;
596
+ }[];
597
+ };
598
+ }>;
599
+ fc_add_reaction: (args: any) => Promise<{
600
+ toolResult: {
601
+ content: {
602
+ type: string;
603
+ text: string;
604
+ }[];
605
+ isError?: undefined;
606
+ };
607
+ } | {
608
+ toolResult: {
609
+ isError: boolean;
610
+ content: {
611
+ type: string;
612
+ text: string;
613
+ }[];
614
+ };
615
+ }>;
616
+ fc_remove_reaction: (args: any) => Promise<{
617
+ toolResult: {
618
+ content: {
619
+ type: string;
620
+ text: string;
621
+ }[];
622
+ isError?: undefined;
623
+ };
624
+ } | {
625
+ toolResult: {
626
+ isError: boolean;
627
+ content: {
628
+ type: string;
629
+ text: string;
630
+ }[];
631
+ };
632
+ }>;
633
+ fc_list_bookmarks: (args: any) => Promise<{
634
+ toolResult: {
635
+ content: {
636
+ type: string;
637
+ text: string;
638
+ }[];
639
+ isError?: undefined;
640
+ };
641
+ } | {
642
+ toolResult: {
643
+ isError: boolean;
644
+ content: {
645
+ type: string;
646
+ text: string;
647
+ }[];
648
+ };
649
+ }>;
650
+ fc_add_bookmark: (args: any) => Promise<{
651
+ toolResult: {
652
+ content: {
653
+ type: string;
654
+ text: string;
655
+ }[];
656
+ isError?: undefined;
657
+ };
658
+ } | {
659
+ toolResult: {
660
+ isError: boolean;
661
+ content: {
662
+ type: string;
663
+ text: string;
664
+ }[];
665
+ };
666
+ }>;
667
+ fc_remove_bookmark: (args: any) => Promise<{
668
+ toolResult: {
669
+ content: {
670
+ type: string;
671
+ text: string;
672
+ }[];
673
+ isError?: undefined;
674
+ };
675
+ } | {
676
+ toolResult: {
677
+ isError: boolean;
678
+ content: {
679
+ type: string;
680
+ text: string;
681
+ }[];
682
+ };
683
+ }>;
684
+ fc_list_notifications: (args: any) => Promise<{
685
+ toolResult: {
686
+ content: {
687
+ type: string;
688
+ text: string;
689
+ }[];
690
+ isError?: undefined;
691
+ };
692
+ } | {
693
+ toolResult: {
694
+ isError: boolean;
695
+ content: {
696
+ type: string;
697
+ text: string;
698
+ }[];
699
+ };
700
+ }>;
701
+ fc_mark_notifications_read: (args: any) => Promise<{
702
+ toolResult: {
703
+ content: {
704
+ type: string;
705
+ text: string;
706
+ }[];
707
+ isError?: undefined;
708
+ };
709
+ } | {
710
+ toolResult: {
711
+ isError: boolean;
712
+ content: {
713
+ type: string;
714
+ text: string;
715
+ }[];
716
+ };
717
+ }>;
718
+ fc_list_followers: (args: any) => Promise<{
719
+ toolResult: {
720
+ content: {
721
+ type: string;
722
+ text: string;
723
+ }[];
724
+ isError?: undefined;
725
+ };
726
+ } | {
727
+ toolResult: {
728
+ isError: boolean;
729
+ content: {
730
+ type: string;
731
+ text: string;
732
+ }[];
733
+ };
734
+ }>;
735
+ fc_follow_user: (args: any) => Promise<{
736
+ toolResult: {
737
+ content: {
738
+ type: string;
739
+ text: string;
740
+ }[];
741
+ isError?: undefined;
742
+ };
743
+ } | {
744
+ toolResult: {
745
+ isError: boolean;
746
+ content: {
747
+ type: string;
748
+ text: string;
749
+ }[];
750
+ };
751
+ }>;
752
+ fc_unfollow_user: (args: any) => Promise<{
753
+ toolResult: {
754
+ content: {
755
+ type: string;
756
+ text: string;
757
+ }[];
758
+ isError?: undefined;
759
+ };
760
+ } | {
761
+ toolResult: {
762
+ isError: boolean;
763
+ content: {
764
+ type: string;
765
+ text: string;
766
+ }[];
767
+ };
768
+ }>;
769
+ fc_list_topics: (args: any) => Promise<{
770
+ toolResult: {
771
+ content: {
772
+ type: string;
773
+ text: string;
774
+ }[];
775
+ isError?: undefined;
776
+ };
777
+ } | {
778
+ toolResult: {
779
+ isError: boolean;
780
+ content: {
781
+ type: string;
782
+ text: string;
783
+ }[];
784
+ };
785
+ }>;
786
+ fc_get_topic: (args: any) => Promise<{
787
+ toolResult: {
788
+ content: {
789
+ type: string;
790
+ text: string;
791
+ }[];
792
+ isError?: undefined;
793
+ };
794
+ } | {
795
+ toolResult: {
796
+ isError: boolean;
797
+ content: {
798
+ type: string;
799
+ text: string;
800
+ }[];
801
+ };
802
+ }>;
803
+ fc_create_topic: (args: any) => Promise<{
804
+ toolResult: {
805
+ content: {
806
+ type: string;
807
+ text: string;
808
+ }[];
809
+ isError?: undefined;
810
+ };
811
+ } | {
812
+ toolResult: {
813
+ isError: boolean;
814
+ content: {
815
+ type: string;
816
+ text: string;
817
+ }[];
818
+ };
819
+ }>;
820
+ fc_update_topic: (args: any) => Promise<{
821
+ toolResult: {
822
+ content: {
823
+ type: string;
824
+ text: string;
825
+ }[];
826
+ isError?: undefined;
827
+ };
828
+ } | {
829
+ toolResult: {
830
+ isError: boolean;
831
+ content: {
832
+ type: string;
833
+ text: string;
834
+ }[];
835
+ };
836
+ }>;
837
+ fc_delete_topic: (args: any) => Promise<{
838
+ toolResult: {
839
+ content: {
840
+ type: string;
841
+ text: string;
842
+ }[];
843
+ isError?: undefined;
844
+ };
845
+ } | {
846
+ toolResult: {
847
+ isError: boolean;
848
+ content: {
849
+ type: string;
850
+ text: string;
851
+ }[];
852
+ };
853
+ }>;
854
+ fc_list_reports: (args: any) => Promise<{
855
+ toolResult: {
856
+ content: {
857
+ type: string;
858
+ text: string;
859
+ }[];
860
+ isError?: undefined;
861
+ };
862
+ } | {
863
+ toolResult: {
864
+ isError: boolean;
865
+ content: {
866
+ type: string;
867
+ text: string;
868
+ }[];
869
+ };
870
+ }>;
871
+ fc_create_report: (args: any) => Promise<{
872
+ toolResult: {
873
+ content: {
874
+ type: string;
875
+ text: string;
876
+ }[];
877
+ isError?: undefined;
878
+ };
879
+ } | {
880
+ toolResult: {
881
+ isError: boolean;
882
+ content: {
883
+ type: string;
884
+ text: string;
885
+ }[];
886
+ };
887
+ }>;
888
+ fc_list_scheduled_posts: (args: any) => Promise<{
889
+ toolResult: {
890
+ content: {
891
+ type: string;
892
+ text: string;
893
+ }[];
894
+ isError?: undefined;
895
+ };
896
+ } | {
897
+ toolResult: {
898
+ isError: boolean;
899
+ content: {
900
+ type: string;
901
+ text: string;
902
+ }[];
903
+ };
904
+ }>;
905
+ };