@wplaunchify/ml-mcp-server 2.7.0 → 2.7.1
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/index.js +2 -4
- package/package.json +68 -68
package/build/tools/index.js
CHANGED
|
@@ -68,9 +68,8 @@ const toolCategories = {
|
|
|
68
68
|
fluentcrm: [
|
|
69
69
|
...fluentCRMTools
|
|
70
70
|
],
|
|
71
|
+
// mlplugins - Only Fluent Affiliate (ML Image Editor & Media Hub are in wordpress category)
|
|
71
72
|
mlplugins: [
|
|
72
|
-
...mlImageEditorTools,
|
|
73
|
-
...mlMediaHubTools,
|
|
74
73
|
...fluentAffiliateTools
|
|
75
74
|
],
|
|
76
75
|
pro: [
|
|
@@ -121,9 +120,8 @@ const handlerCategories = {
|
|
|
121
120
|
fluentcrm: {
|
|
122
121
|
...fluentCRMHandlers
|
|
123
122
|
},
|
|
123
|
+
// mlplugins - Only Fluent Affiliate (ML Image Editor & Media Hub handlers are in wordpress category)
|
|
124
124
|
mlplugins: {
|
|
125
|
-
...mlImageEditorHandlers,
|
|
126
|
-
...mlMediaHubHandlers,
|
|
127
125
|
...fluentAffiliateHandlers
|
|
128
126
|
},
|
|
129
127
|
pro: {
|
package/package.json
CHANGED
|
@@ -1,68 +1,68 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@wplaunchify/ml-mcp-server",
|
|
3
|
-
"version": "2.7.
|
|
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
|
-
"type": "module",
|
|
6
|
-
"main": "./build/server.js",
|
|
7
|
-
"exports": "./build/server.js",
|
|
8
|
-
"bin": {
|
|
9
|
-
"ml-mcp-server": "./build/server.js"
|
|
10
|
-
},
|
|
11
|
-
"engines": {
|
|
12
|
-
"node": ">=18.0.0"
|
|
13
|
-
},
|
|
14
|
-
"scripts": {
|
|
15
|
-
"build": "tsc --project tsconfig.json",
|
|
16
|
-
"start": "node ./build/server.js",
|
|
17
|
-
"dev": "tsx watch src/server.ts",
|
|
18
|
-
"clean": "rimraf build",
|
|
19
|
-
"prepare": "npm run build"
|
|
20
|
-
},
|
|
21
|
-
"keywords": [
|
|
22
|
-
"wordpress",
|
|
23
|
-
"mcp",
|
|
24
|
-
"model-context-protocol",
|
|
25
|
-
"fluent-community",
|
|
26
|
-
"fluent-crm",
|
|
27
|
-
"fluent-cart",
|
|
28
|
-
"fluentmcp-pro",
|
|
29
|
-
"woocommerce",
|
|
30
|
-
"minutelaunch",
|
|
31
|
-
"ai",
|
|
32
|
-
"claude",
|
|
33
|
-
"cursor"
|
|
34
|
-
],
|
|
35
|
-
"author": "1WD LLC",
|
|
36
|
-
"license": "MIT",
|
|
37
|
-
"repository": {
|
|
38
|
-
"type": "git",
|
|
39
|
-
"url": "https://github.com/wplaunchify/ml-mcp-server.git"
|
|
40
|
-
},
|
|
41
|
-
"bugs": {
|
|
42
|
-
"url": "https://github.com/wplaunchify/ml-mcp-server/issues"
|
|
43
|
-
},
|
|
44
|
-
"homepage": "https://github.com/wplaunchify/ml-mcp-server#readme",
|
|
45
|
-
"dependencies": {
|
|
46
|
-
"@modelcontextprotocol/sdk": "^1.4.1",
|
|
47
|
-
"axios": "^1.6.7",
|
|
48
|
-
"dotenv": "^16.4.5",
|
|
49
|
-
"fs-extra": "^11.2.0",
|
|
50
|
-
"zod": "^3.23.8",
|
|
51
|
-
"zod-to-json-schema": "^3.24.1"
|
|
52
|
-
},
|
|
53
|
-
"devDependencies": {
|
|
54
|
-
"@types/fs-extra": "^11.0.4",
|
|
55
|
-
"@types/node": "^22.10.0",
|
|
56
|
-
"rimraf": "^5.0.5",
|
|
57
|
-
"tsx": "^4.7.1",
|
|
58
|
-
"typescript": "^5.3.3"
|
|
59
|
-
},
|
|
60
|
-
"publishConfig": {
|
|
61
|
-
"access": "public"
|
|
62
|
-
},
|
|
63
|
-
"files": [
|
|
64
|
-
"build",
|
|
65
|
-
"README.md",
|
|
66
|
-
"LICENSE"
|
|
67
|
-
]
|
|
68
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@wplaunchify/ml-mcp-server",
|
|
3
|
+
"version": "2.7.1",
|
|
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
|
+
"type": "module",
|
|
6
|
+
"main": "./build/server.js",
|
|
7
|
+
"exports": "./build/server.js",
|
|
8
|
+
"bin": {
|
|
9
|
+
"ml-mcp-server": "./build/server.js"
|
|
10
|
+
},
|
|
11
|
+
"engines": {
|
|
12
|
+
"node": ">=18.0.0"
|
|
13
|
+
},
|
|
14
|
+
"scripts": {
|
|
15
|
+
"build": "tsc --project tsconfig.json",
|
|
16
|
+
"start": "node ./build/server.js",
|
|
17
|
+
"dev": "tsx watch src/server.ts",
|
|
18
|
+
"clean": "rimraf build",
|
|
19
|
+
"prepare": "npm run build"
|
|
20
|
+
},
|
|
21
|
+
"keywords": [
|
|
22
|
+
"wordpress",
|
|
23
|
+
"mcp",
|
|
24
|
+
"model-context-protocol",
|
|
25
|
+
"fluent-community",
|
|
26
|
+
"fluent-crm",
|
|
27
|
+
"fluent-cart",
|
|
28
|
+
"fluentmcp-pro",
|
|
29
|
+
"woocommerce",
|
|
30
|
+
"minutelaunch",
|
|
31
|
+
"ai",
|
|
32
|
+
"claude",
|
|
33
|
+
"cursor"
|
|
34
|
+
],
|
|
35
|
+
"author": "1WD LLC",
|
|
36
|
+
"license": "MIT",
|
|
37
|
+
"repository": {
|
|
38
|
+
"type": "git",
|
|
39
|
+
"url": "https://github.com/wplaunchify/ml-mcp-server.git"
|
|
40
|
+
},
|
|
41
|
+
"bugs": {
|
|
42
|
+
"url": "https://github.com/wplaunchify/ml-mcp-server/issues"
|
|
43
|
+
},
|
|
44
|
+
"homepage": "https://github.com/wplaunchify/ml-mcp-server#readme",
|
|
45
|
+
"dependencies": {
|
|
46
|
+
"@modelcontextprotocol/sdk": "^1.4.1",
|
|
47
|
+
"axios": "^1.6.7",
|
|
48
|
+
"dotenv": "^16.4.5",
|
|
49
|
+
"fs-extra": "^11.2.0",
|
|
50
|
+
"zod": "^3.23.8",
|
|
51
|
+
"zod-to-json-schema": "^3.24.1"
|
|
52
|
+
},
|
|
53
|
+
"devDependencies": {
|
|
54
|
+
"@types/fs-extra": "^11.0.4",
|
|
55
|
+
"@types/node": "^22.10.0",
|
|
56
|
+
"rimraf": "^5.0.5",
|
|
57
|
+
"tsx": "^4.7.1",
|
|
58
|
+
"typescript": "^5.3.3"
|
|
59
|
+
},
|
|
60
|
+
"publishConfig": {
|
|
61
|
+
"access": "public"
|
|
62
|
+
},
|
|
63
|
+
"files": [
|
|
64
|
+
"build",
|
|
65
|
+
"README.md",
|
|
66
|
+
"LICENSE"
|
|
67
|
+
]
|
|
68
|
+
}
|