@wplaunchify/ml-mcp-server 2.1.0 → 2.1.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.
|
@@ -53,14 +53,18 @@ const createSpaceSchema = z.object({
|
|
|
53
53
|
slug: z.string().optional().describe('Space slug (URL-friendly name)'),
|
|
54
54
|
description: z.string().optional().describe('Space description'),
|
|
55
55
|
privacy: z.enum(['public', 'private']).optional().default('public').describe('Privacy setting'),
|
|
56
|
-
status: z.enum(['active', 'inactive']).optional().default('active').describe('Space status')
|
|
56
|
+
status: z.enum(['active', 'inactive']).optional().default('active').describe('Space status'),
|
|
57
|
+
logo: z.string().optional().describe('Space logo/thumbnail URL'),
|
|
58
|
+
cover_photo: z.string().optional().describe('Space cover photo URL')
|
|
57
59
|
});
|
|
58
60
|
const updateSpaceSchema = z.object({
|
|
59
61
|
space_id: z.number().describe('The ID of the space to update'),
|
|
60
62
|
title: z.string().optional().describe('Space title'),
|
|
61
63
|
description: z.string().optional().describe('Space description'),
|
|
62
64
|
privacy: z.enum(['public', 'private']).optional().describe('Privacy setting'),
|
|
63
|
-
status: z.enum(['active', 'inactive', 'archived']).optional().describe('Space status')
|
|
65
|
+
status: z.enum(['active', 'inactive', 'archived']).optional().describe('Space status'),
|
|
66
|
+
logo: z.string().optional().describe('Space logo/thumbnail URL'),
|
|
67
|
+
cover_photo: z.string().optional().describe('Space cover photo URL')
|
|
64
68
|
});
|
|
65
69
|
// Comments
|
|
66
70
|
const listCommentsSchema = z.object({
|
|
@@ -52,14 +52,18 @@ const createSpaceSchema = z.object({
|
|
|
52
52
|
slug: z.string().optional().describe('Space slug (URL-friendly name)'),
|
|
53
53
|
description: z.string().optional().describe('Space description'),
|
|
54
54
|
privacy: z.enum(['public', 'private']).optional().default('public').describe('Privacy setting'),
|
|
55
|
-
status: z.enum(['active', 'inactive']).optional().default('active').describe('Space status')
|
|
55
|
+
status: z.enum(['active', 'inactive']).optional().default('active').describe('Space status'),
|
|
56
|
+
logo: z.string().optional().describe('Space logo/thumbnail URL'),
|
|
57
|
+
cover_photo: z.string().optional().describe('Space cover photo URL')
|
|
56
58
|
});
|
|
57
59
|
const updateSpaceSchema = z.object({
|
|
58
60
|
space_id: z.number().describe('The ID of the space to update'),
|
|
59
61
|
title: z.string().optional().describe('Space title'),
|
|
60
62
|
description: z.string().optional().describe('Space description'),
|
|
61
63
|
privacy: z.enum(['public', 'private']).optional().describe('Privacy setting'),
|
|
62
|
-
status: z.enum(['active', 'inactive', 'archived']).optional().describe('Space status')
|
|
64
|
+
status: z.enum(['active', 'inactive', 'archived']).optional().describe('Space status'),
|
|
65
|
+
logo: z.string().optional().describe('Space logo/thumbnail URL'),
|
|
66
|
+
cover_photo: z.string().optional().describe('Space cover photo URL')
|
|
63
67
|
});
|
|
64
68
|
const listCommentsSchema = z.object({
|
|
65
69
|
post_id: z.number().optional().describe('Filter comments by post ID'),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wplaunchify/ml-mcp-server",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.1",
|
|
4
4
|
"description": "Universal MCP Server for WordPress + Fluent Suite (Community, CRM, Cart) + MinuteLaunch Plugins. Comprehensive tools for AI-powered WordPress management via Claude, Cursor, and other MCP clients.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./build/server.js",
|