@wplaunchify/ml-mcp-server 2.5.1 → 2.5.4
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/server.js +25 -12
- package/build/tools/fluent-mcp-pro.d.ts +37 -134
- package/build/tools/fluent-mcp-pro.js +500 -785
- package/build/tools/index.js +17 -17
- package/package.json +1 -1
package/build/tools/index.js
CHANGED
|
@@ -23,7 +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
|
-
|
|
26
|
+
import { fluentMcpProTools, fluentMcpProHandlers } from './fluent-mcp-pro.js';
|
|
27
27
|
// Tool categories for selective loading
|
|
28
28
|
const toolCategories = {
|
|
29
29
|
wordpress: [
|
|
@@ -71,9 +71,9 @@ const toolCategories = {
|
|
|
71
71
|
...mlMediaHubTools,
|
|
72
72
|
...fluentAffiliateTools
|
|
73
73
|
],
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
74
|
+
pro: [
|
|
75
|
+
...fluentMcpProTools
|
|
76
|
+
],
|
|
77
77
|
debug: [
|
|
78
78
|
...debugTools
|
|
79
79
|
]
|
|
@@ -122,9 +122,9 @@ const handlerCategories = {
|
|
|
122
122
|
...mlMediaHubHandlers,
|
|
123
123
|
...fluentAffiliateHandlers
|
|
124
124
|
},
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
125
|
+
pro: {
|
|
126
|
+
...fluentMcpProHandlers
|
|
127
|
+
},
|
|
128
128
|
debug: {
|
|
129
129
|
...debugHandlers
|
|
130
130
|
}
|
|
@@ -140,7 +140,7 @@ function getFilteredTools() {
|
|
|
140
140
|
...toolCategories.fluentcart,
|
|
141
141
|
...toolCategories.fluentcrm,
|
|
142
142
|
...toolCategories.mlplugins,
|
|
143
|
-
|
|
143
|
+
...toolCategories.pro,
|
|
144
144
|
...toolCategories.debug
|
|
145
145
|
];
|
|
146
146
|
}
|
|
@@ -158,9 +158,9 @@ function getFilteredTools() {
|
|
|
158
158
|
'fluent-crm': 'fluentcrm',
|
|
159
159
|
'fluentcrm': 'fluentcrm',
|
|
160
160
|
'mlplugins': 'mlplugins',
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
161
|
+
'pro': 'pro',
|
|
162
|
+
'fluentmcp-pro': 'pro',
|
|
163
|
+
'fluent-mcp-pro': 'pro',
|
|
164
164
|
'debug': 'debug'
|
|
165
165
|
};
|
|
166
166
|
const category = categoryMap[enabledTools];
|
|
@@ -175,7 +175,7 @@ function getFilteredTools() {
|
|
|
175
175
|
...toolCategories.fluentcart,
|
|
176
176
|
...toolCategories.fluentcrm,
|
|
177
177
|
...toolCategories.mlplugins,
|
|
178
|
-
|
|
178
|
+
...toolCategories.pro,
|
|
179
179
|
...toolCategories.debug
|
|
180
180
|
];
|
|
181
181
|
}
|
|
@@ -189,7 +189,7 @@ function getFilteredHandlers() {
|
|
|
189
189
|
...handlerCategories.fluentcart,
|
|
190
190
|
...handlerCategories.fluentcrm,
|
|
191
191
|
...handlerCategories.mlplugins,
|
|
192
|
-
|
|
192
|
+
...handlerCategories.pro,
|
|
193
193
|
...handlerCategories.debug
|
|
194
194
|
};
|
|
195
195
|
}
|
|
@@ -207,9 +207,9 @@ function getFilteredHandlers() {
|
|
|
207
207
|
'fluent-crm': 'fluentcrm',
|
|
208
208
|
'fluentcrm': 'fluentcrm',
|
|
209
209
|
'mlplugins': 'mlplugins',
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
210
|
+
'pro': 'pro',
|
|
211
|
+
'fluentmcp-pro': 'pro',
|
|
212
|
+
'fluent-mcp-pro': 'pro',
|
|
213
213
|
'debug': 'debug'
|
|
214
214
|
};
|
|
215
215
|
const category = categoryMap[enabledTools];
|
|
@@ -222,7 +222,7 @@ function getFilteredHandlers() {
|
|
|
222
222
|
...handlerCategories.fluentcart,
|
|
223
223
|
...handlerCategories.fluentcrm,
|
|
224
224
|
...handlerCategories.mlplugins,
|
|
225
|
-
|
|
225
|
+
...handlerCategories.pro,
|
|
226
226
|
...handlerCategories.debug
|
|
227
227
|
};
|
|
228
228
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wplaunchify/ml-mcp-server",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.4",
|
|
4
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",
|