@wplaunchify/ml-mcp-server 1.0.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.
Files changed (49) hide show
  1. package/LICENSE +22 -0
  2. package/README.md +220 -0
  3. package/build/cli.d.ts +2 -0
  4. package/build/cli.js +52 -0
  5. package/build/server.d.ts +2 -0
  6. package/build/server.js +97 -0
  7. package/build/tools/comments.d.ts +212 -0
  8. package/build/tools/comments.js +181 -0
  9. package/build/tools/fluent-affiliate.d.ts +2 -0
  10. package/build/tools/fluent-affiliate.js +3 -0
  11. package/build/tools/fluent-cart.d.ts +706 -0
  12. package/build/tools/fluent-cart.js +642 -0
  13. package/build/tools/fluent-community-BACKUP.d.ts +364 -0
  14. package/build/tools/fluent-community-BACKUP.js +883 -0
  15. package/build/tools/fluent-community-MINIMAL.d.ts +69 -0
  16. package/build/tools/fluent-community-MINIMAL.js +92 -0
  17. package/build/tools/fluent-community-design.d.ts +3 -0
  18. package/build/tools/fluent-community-design.js +150 -0
  19. package/build/tools/fluent-community-layout.d.ts +119 -0
  20. package/build/tools/fluent-community-layout.js +88 -0
  21. package/build/tools/fluent-community.d.ts +364 -0
  22. package/build/tools/fluent-community.js +528 -0
  23. package/build/tools/fluent-crm.d.ts +3 -0
  24. package/build/tools/fluent-crm.js +392 -0
  25. package/build/tools/index.d.ts +2205 -0
  26. package/build/tools/index.js +54 -0
  27. package/build/tools/media.d.ts +135 -0
  28. package/build/tools/media.js +168 -0
  29. package/build/tools/ml-canvas.d.ts +91 -0
  30. package/build/tools/ml-canvas.js +109 -0
  31. package/build/tools/ml-image-editor.d.ts +230 -0
  32. package/build/tools/ml-image-editor.js +270 -0
  33. package/build/tools/ml-media-hub.d.ts +575 -0
  34. package/build/tools/ml-media-hub.js +714 -0
  35. package/build/tools/plugin-repository.d.ts +62 -0
  36. package/build/tools/plugin-repository.js +149 -0
  37. package/build/tools/plugins.d.ts +129 -0
  38. package/build/tools/plugins.js +148 -0
  39. package/build/tools/unified-content.d.ts +313 -0
  40. package/build/tools/unified-content.js +615 -0
  41. package/build/tools/unified-taxonomies.d.ts +229 -0
  42. package/build/tools/unified-taxonomies.js +479 -0
  43. package/build/tools/users.d.ts +227 -0
  44. package/build/tools/users.js +182 -0
  45. package/build/types/wordpress-types.d.ts +151 -0
  46. package/build/types/wordpress-types.js +2 -0
  47. package/build/wordpress.d.ts +26 -0
  48. package/build/wordpress.js +223 -0
  49. package/package.json +67 -0
@@ -0,0 +1,364 @@
1
+ import { Tool } from '@modelcontextprotocol/sdk/types.js';
2
+ export declare const fluentCommunityTools: Tool[];
3
+ /**
4
+ * FluentCommunity Tool Handlers
5
+ */
6
+ export declare const fluentCommunityHandlers: {
7
+ fc_list_posts: (args: any) => Promise<{
8
+ toolResult: {
9
+ content: {
10
+ type: string;
11
+ text: string;
12
+ }[];
13
+ isError?: undefined;
14
+ };
15
+ } | {
16
+ toolResult: {
17
+ isError: boolean;
18
+ content: {
19
+ type: string;
20
+ text: string;
21
+ }[];
22
+ };
23
+ }>;
24
+ fc_get_post: (args: any) => Promise<{
25
+ toolResult: {
26
+ content: {
27
+ type: string;
28
+ text: string;
29
+ }[];
30
+ isError?: undefined;
31
+ };
32
+ } | {
33
+ toolResult: {
34
+ isError: boolean;
35
+ content: {
36
+ type: string;
37
+ text: string;
38
+ }[];
39
+ };
40
+ }>;
41
+ fc_create_post: (args: any) => Promise<{
42
+ toolResult: {
43
+ content: {
44
+ type: string;
45
+ text: string;
46
+ }[];
47
+ isError?: undefined;
48
+ };
49
+ } | {
50
+ toolResult: {
51
+ isError: boolean;
52
+ content: {
53
+ type: string;
54
+ text: string;
55
+ }[];
56
+ };
57
+ }>;
58
+ fc_update_post: (args: any) => Promise<{
59
+ toolResult: {
60
+ content: {
61
+ type: string;
62
+ text: string;
63
+ }[];
64
+ isError?: undefined;
65
+ };
66
+ } | {
67
+ toolResult: {
68
+ isError: boolean;
69
+ content: {
70
+ type: string;
71
+ text: string;
72
+ }[];
73
+ };
74
+ }>;
75
+ fc_delete_post: (args: any) => Promise<{
76
+ toolResult: {
77
+ content: {
78
+ type: string;
79
+ text: string;
80
+ }[];
81
+ isError?: undefined;
82
+ };
83
+ } | {
84
+ toolResult: {
85
+ isError: boolean;
86
+ content: {
87
+ type: string;
88
+ text: string;
89
+ }[];
90
+ };
91
+ }>;
92
+ fc_list_spaces: (args: any) => Promise<{
93
+ toolResult: {
94
+ content: {
95
+ type: string;
96
+ text: string;
97
+ }[];
98
+ isError?: undefined;
99
+ };
100
+ } | {
101
+ toolResult: {
102
+ isError: boolean;
103
+ content: {
104
+ type: string;
105
+ text: string;
106
+ }[];
107
+ };
108
+ }>;
109
+ fc_get_space: (args: any) => Promise<{
110
+ toolResult: {
111
+ content: {
112
+ type: string;
113
+ text: string;
114
+ }[];
115
+ isError?: undefined;
116
+ };
117
+ } | {
118
+ toolResult: {
119
+ isError: boolean;
120
+ content: {
121
+ type: string;
122
+ text: string;
123
+ }[];
124
+ };
125
+ }>;
126
+ fc_create_space: (args: any) => Promise<{
127
+ toolResult: {
128
+ content: {
129
+ type: string;
130
+ text: string;
131
+ }[];
132
+ isError?: undefined;
133
+ };
134
+ } | {
135
+ toolResult: {
136
+ isError: boolean;
137
+ content: {
138
+ type: string;
139
+ text: string;
140
+ }[];
141
+ };
142
+ }>;
143
+ fc_update_space: (args: any) => Promise<{
144
+ toolResult: {
145
+ content: {
146
+ type: string;
147
+ text: string;
148
+ }[];
149
+ isError?: undefined;
150
+ };
151
+ } | {
152
+ toolResult: {
153
+ isError: boolean;
154
+ content: {
155
+ type: string;
156
+ text: string;
157
+ }[];
158
+ };
159
+ }>;
160
+ fc_list_comments: (args: any) => Promise<{
161
+ toolResult: {
162
+ content: {
163
+ type: string;
164
+ text: string;
165
+ }[];
166
+ isError?: undefined;
167
+ };
168
+ } | {
169
+ toolResult: {
170
+ isError: boolean;
171
+ content: {
172
+ type: string;
173
+ text: string;
174
+ }[];
175
+ };
176
+ }>;
177
+ fc_create_comment: (args: any) => Promise<{
178
+ toolResult: {
179
+ content: {
180
+ type: string;
181
+ text: string;
182
+ }[];
183
+ isError?: undefined;
184
+ };
185
+ } | {
186
+ toolResult: {
187
+ isError: boolean;
188
+ content: {
189
+ type: string;
190
+ text: string;
191
+ }[];
192
+ };
193
+ }>;
194
+ fc_update_comment: (args: any) => Promise<{
195
+ toolResult: {
196
+ content: {
197
+ type: string;
198
+ text: string;
199
+ }[];
200
+ isError?: undefined;
201
+ };
202
+ } | {
203
+ toolResult: {
204
+ isError: boolean;
205
+ content: {
206
+ type: string;
207
+ text: string;
208
+ }[];
209
+ };
210
+ }>;
211
+ fc_delete_comment: (args: any) => Promise<{
212
+ toolResult: {
213
+ content: {
214
+ type: string;
215
+ text: string;
216
+ }[];
217
+ isError?: undefined;
218
+ };
219
+ } | {
220
+ toolResult: {
221
+ isError: boolean;
222
+ content: {
223
+ type: string;
224
+ text: string;
225
+ }[];
226
+ };
227
+ }>;
228
+ fc_list_space_members: (args: any) => Promise<{
229
+ toolResult: {
230
+ content: {
231
+ type: string;
232
+ text: string;
233
+ }[];
234
+ isError?: undefined;
235
+ };
236
+ } | {
237
+ toolResult: {
238
+ isError: boolean;
239
+ content: {
240
+ type: string;
241
+ text: string;
242
+ }[];
243
+ };
244
+ }>;
245
+ fc_add_space_member: (args: any) => Promise<{
246
+ toolResult: {
247
+ content: {
248
+ type: string;
249
+ text: string;
250
+ }[];
251
+ isError?: undefined;
252
+ };
253
+ } | {
254
+ toolResult: {
255
+ isError: boolean;
256
+ content: {
257
+ type: string;
258
+ text: string;
259
+ }[];
260
+ };
261
+ }>;
262
+ fc_remove_space_member: (args: any) => Promise<{
263
+ toolResult: {
264
+ content: {
265
+ type: string;
266
+ text: string;
267
+ }[];
268
+ isError?: undefined;
269
+ };
270
+ } | {
271
+ toolResult: {
272
+ isError: boolean;
273
+ content: {
274
+ type: string;
275
+ text: string;
276
+ }[];
277
+ };
278
+ }>;
279
+ fc_search_content: (args: any) => Promise<{
280
+ toolResult: {
281
+ content: {
282
+ type: string;
283
+ text: string;
284
+ }[];
285
+ isError?: undefined;
286
+ };
287
+ } | {
288
+ toolResult: {
289
+ isError: boolean;
290
+ content: {
291
+ type: string;
292
+ text: string;
293
+ }[];
294
+ };
295
+ }>;
296
+ fc_get_space_analytics: (args: any) => Promise<{
297
+ toolResult: {
298
+ content: {
299
+ type: string;
300
+ text: string;
301
+ }[];
302
+ isError?: undefined;
303
+ };
304
+ } | {
305
+ toolResult: {
306
+ isError: boolean;
307
+ content: {
308
+ type: string;
309
+ text: string;
310
+ }[];
311
+ };
312
+ }>;
313
+ fc_bulk_create_posts: (args: any) => Promise<{
314
+ toolResult: {
315
+ content: {
316
+ type: string;
317
+ text: string;
318
+ }[];
319
+ isError?: undefined;
320
+ };
321
+ } | {
322
+ toolResult: {
323
+ isError: boolean;
324
+ content: {
325
+ type: string;
326
+ text: string;
327
+ }[];
328
+ };
329
+ }>;
330
+ fc_bulk_update_posts: (args: any) => Promise<{
331
+ toolResult: {
332
+ content: {
333
+ type: string;
334
+ text: string;
335
+ }[];
336
+ isError?: undefined;
337
+ };
338
+ } | {
339
+ toolResult: {
340
+ isError: boolean;
341
+ content: {
342
+ type: string;
343
+ text: string;
344
+ }[];
345
+ };
346
+ }>;
347
+ fc_bulk_delete_posts: (args: any) => Promise<{
348
+ toolResult: {
349
+ content: {
350
+ type: string;
351
+ text: string;
352
+ }[];
353
+ isError?: undefined;
354
+ };
355
+ } | {
356
+ toolResult: {
357
+ isError: boolean;
358
+ content: {
359
+ type: string;
360
+ text: string;
361
+ }[];
362
+ };
363
+ }>;
364
+ };