@wplaunchify/ml-mcp-server 2.0.0 → 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,446 @@
1
+ import { Tool } from '@modelcontextprotocol/sdk/types.js';
2
+ export declare const fluentCommunityLearningTools: Tool[];
3
+ export declare const fluentCommunityLearningHandlers: {
4
+ fc_list_courses: (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_course: (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_course: (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_course: (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_course: (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_lessons: (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_lesson: (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_lesson: (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_lesson: (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_delete_lesson: (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_get_course_progress: (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_course_progress: (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_get_my_courses: (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_quizzes: (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_get_quiz: (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_create_quiz: (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_update_quiz: (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_delete_quiz: (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_list_media: (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_upload_media: (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_search_giphy: (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_list_webhooks: (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_create_webhook: (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_delete_webhook: (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_get_leaderboard: (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_add_points: (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
+ };