@wplaunchify/ml-mcp-server 2.7.5 → 2.7.7

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.
@@ -1,854 +1,3 @@
1
1
  import { Tool } from '@modelcontextprotocol/sdk/types.js';
2
2
  export declare const fluentMcpProTools: Tool[];
3
- export declare const fluentMcpProHandlers: {
4
- pro_fs_read: (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
- pro_fs_write: (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
- pro_fs_list: (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
- pro_fs_delete: (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
- pro_fs_mkdir: (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
- pro_fs_move: (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
- pro_fs_info: (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
- pro_db_query: (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
- pro_db_backup: (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
- pro_db_restore: (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
- pro_db_table_list: (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
- pro_db_table_info: (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
- pro_db_optimize: (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
- pro_db_repair: (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
- pro_db_export: (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
- pro_wp_get_option: (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
- pro_wp_set_option: (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
- pro_wp_delete_option: (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
- pro_wp_list_options: (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
- pro_wp_get_constants: (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
- pro_wp_get_env: (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
- pro_wp_site_info: (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
- pro_wp_get_permalinks: (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
- pro_wp_set_permalinks: (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
- pro_wp_get_timezone: (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
- pro_wp_set_timezone: (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
- pro_wp_flush_cache: (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
- pro_theme_list: (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
- pro_theme_activate: (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
- pro_theme_delete: (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
- pro_system_info: (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
- pro_system_health: (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
- pro_system_logs: (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
- pro_system_cron: (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
- pro_system_cron_run: (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
- pro_wc_product_list: (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
- pro_wc_product_get: (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
- pro_wc_product_create: (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
- pro_wc_product_update: (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
- pro_wc_product_delete: (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
- pro_wc_order_list: (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
- pro_wc_order_get: (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
- pro_wc_order_update: (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
- pro_wc_customer_list: (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
- pro_wc_customer_get: (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
- pro_wc_reports: (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
- pro_wc_coupon_list: (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
- pro_wc_coupon_create: (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
- pro_wp_cli_execute: (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
- pro_wp_cli_available: (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
- };
3
+ export declare const fluentMcpProHandlers: Record<string, (args: any) => Promise<any>>;