@wplaunchify/ml-mcp-server 2.4.11 → 2.5.2
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.
- package/build/tools/fluent-crm.js +24 -48
- package/build/tools/fluent-mcp-pro.d.ts +854 -0
- package/build/tools/fluent-mcp-pro.js +1663 -0
- package/build/tools/index.js +17 -0
- package/package.json +4 -2
package/build/tools/index.js
CHANGED
|
@@ -23,6 +23,7 @@ import { fluentCommunityChatTools, fluentCommunityChatHandlers } from './fluent-
|
|
|
23
23
|
import { fluentCommunityAdminTools, fluentCommunityAdminHandlers } from './fluent-community-admin.js';
|
|
24
24
|
import { fluentCommunityCoreTools, fluentCommunityCoreHandlers } from './fluent-community-core.js';
|
|
25
25
|
import { fluentCommunityLearningTools, fluentCommunityLearningHandlers } from './fluent-community-learning.js';
|
|
26
|
+
import { fluentMcpProTools, fluentMcpProHandlers } from './fluent-mcp-pro.js';
|
|
26
27
|
// Tool categories for selective loading
|
|
27
28
|
const toolCategories = {
|
|
28
29
|
wordpress: [
|
|
@@ -70,6 +71,9 @@ const toolCategories = {
|
|
|
70
71
|
...mlMediaHubTools,
|
|
71
72
|
...fluentAffiliateTools
|
|
72
73
|
],
|
|
74
|
+
pro: [
|
|
75
|
+
...fluentMcpProTools
|
|
76
|
+
],
|
|
73
77
|
debug: [
|
|
74
78
|
...debugTools
|
|
75
79
|
]
|
|
@@ -118,6 +122,9 @@ const handlerCategories = {
|
|
|
118
122
|
...mlMediaHubHandlers,
|
|
119
123
|
...fluentAffiliateHandlers
|
|
120
124
|
},
|
|
125
|
+
pro: {
|
|
126
|
+
...fluentMcpProHandlers
|
|
127
|
+
},
|
|
121
128
|
debug: {
|
|
122
129
|
...debugHandlers
|
|
123
130
|
}
|
|
@@ -133,6 +140,7 @@ function getFilteredTools() {
|
|
|
133
140
|
...toolCategories.fluentcart,
|
|
134
141
|
...toolCategories.fluentcrm,
|
|
135
142
|
...toolCategories.mlplugins,
|
|
143
|
+
...toolCategories.pro,
|
|
136
144
|
...toolCategories.debug
|
|
137
145
|
];
|
|
138
146
|
}
|
|
@@ -150,6 +158,9 @@ function getFilteredTools() {
|
|
|
150
158
|
'fluent-crm': 'fluentcrm',
|
|
151
159
|
'fluentcrm': 'fluentcrm',
|
|
152
160
|
'mlplugins': 'mlplugins',
|
|
161
|
+
'pro': 'pro',
|
|
162
|
+
'fluentmcp-pro': 'pro',
|
|
163
|
+
'fluent-mcp-pro': 'pro',
|
|
153
164
|
'debug': 'debug'
|
|
154
165
|
};
|
|
155
166
|
const category = categoryMap[enabledTools];
|
|
@@ -164,6 +175,7 @@ function getFilteredTools() {
|
|
|
164
175
|
...toolCategories.fluentcart,
|
|
165
176
|
...toolCategories.fluentcrm,
|
|
166
177
|
...toolCategories.mlplugins,
|
|
178
|
+
...toolCategories.pro,
|
|
167
179
|
...toolCategories.debug
|
|
168
180
|
];
|
|
169
181
|
}
|
|
@@ -177,6 +189,7 @@ function getFilteredHandlers() {
|
|
|
177
189
|
...handlerCategories.fluentcart,
|
|
178
190
|
...handlerCategories.fluentcrm,
|
|
179
191
|
...handlerCategories.mlplugins,
|
|
192
|
+
...handlerCategories.pro,
|
|
180
193
|
...handlerCategories.debug
|
|
181
194
|
};
|
|
182
195
|
}
|
|
@@ -194,6 +207,9 @@ function getFilteredHandlers() {
|
|
|
194
207
|
'fluent-crm': 'fluentcrm',
|
|
195
208
|
'fluentcrm': 'fluentcrm',
|
|
196
209
|
'mlplugins': 'mlplugins',
|
|
210
|
+
'pro': 'pro',
|
|
211
|
+
'fluentmcp-pro': 'pro',
|
|
212
|
+
'fluent-mcp-pro': 'pro',
|
|
197
213
|
'debug': 'debug'
|
|
198
214
|
};
|
|
199
215
|
const category = categoryMap[enabledTools];
|
|
@@ -206,6 +222,7 @@ function getFilteredHandlers() {
|
|
|
206
222
|
...handlerCategories.fluentcart,
|
|
207
223
|
...handlerCategories.fluentcrm,
|
|
208
224
|
...handlerCategories.mlplugins,
|
|
225
|
+
...handlerCategories.pro,
|
|
209
226
|
...handlerCategories.debug
|
|
210
227
|
};
|
|
211
228
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wplaunchify/ml-mcp-server",
|
|
3
|
-
"version": "2.
|
|
4
|
-
"description": "Universal MCP Server for WordPress + Fluent Suite (Community, CRM, Cart) +
|
|
3
|
+
"version": "2.5.2",
|
|
4
|
+
"description": "Universal MCP Server for WordPress + Fluent Suite (Community, CRM, Cart) + FluentMCP Pro. Comprehensive tools for AI-powered WordPress management via Claude, Cursor, and other MCP clients.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./build/server.js",
|
|
7
7
|
"exports": "./build/server.js",
|
|
@@ -25,6 +25,8 @@
|
|
|
25
25
|
"fluent-community",
|
|
26
26
|
"fluent-crm",
|
|
27
27
|
"fluent-cart",
|
|
28
|
+
"fluentmcp-pro",
|
|
29
|
+
"woocommerce",
|
|
28
30
|
"minutelaunch",
|
|
29
31
|
"ai",
|
|
30
32
|
"claude",
|