@wplaunchify/ml-mcp-server 2.7.15 → 2.7.16

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.
@@ -73,7 +73,7 @@ export const fluentCartAnalyticsHandlers = {
73
73
  params.date_from = args.date_from;
74
74
  if (args.date_to)
75
75
  params.date_to = args.date_to;
76
- const response = await makeWordPressRequest('GET', 'fc-manager/v1/fluentcart/reports/overview', params);
76
+ const response = await makeWordPressRequest('GET', 'fc-manager/v1/fcart/reports/overview', params);
77
77
  return { toolResult: { content: [{ type: 'text', text: JSON.stringify(response, null, 2) }] } };
78
78
  }
79
79
  catch (error) {
@@ -82,7 +82,7 @@ export const fluentCartAnalyticsHandlers = {
82
82
  },
83
83
  fcart_get_quick_stats: async (args) => {
84
84
  try {
85
- const response = await makeWordPressRequest('GET', 'fc-manager/v1/fluentcart/reports/quick-stats');
85
+ const response = await makeWordPressRequest('GET', 'fc-manager/v1/fcart/reports/quick-stats');
86
86
  return { toolResult: { content: [{ type: 'text', text: JSON.stringify(response, null, 2) }] } };
87
87
  }
88
88
  catch (error) {
@@ -91,7 +91,7 @@ export const fluentCartAnalyticsHandlers = {
91
91
  },
92
92
  fcart_get_dashboard_stats: async (args) => {
93
93
  try {
94
- const response = await makeWordPressRequest('GET', 'fc-manager/v1/fluentcart/dashboard/stats');
94
+ const response = await makeWordPressRequest('GET', 'fc-manager/v1/fcart/dashboard/stats');
95
95
  return { toolResult: { content: [{ type: 'text', text: JSON.stringify(response, null, 2) }] } };
96
96
  }
97
97
  catch (error) {
@@ -107,7 +107,7 @@ export const fluentCartAnalyticsHandlers = {
107
107
  params.date_to = args.date_to;
108
108
  if (args.type)
109
109
  params.type = args.type;
110
- const response = await makeWordPressRequest('GET', 'fc-manager/v1/fluentcart/analytics', params);
110
+ const response = await makeWordPressRequest('GET', 'fc-manager/v1/fcart/analytics', params);
111
111
  return { toolResult: { content: [{ type: 'text', text: JSON.stringify(response, null, 2) }] } };
112
112
  }
113
113
  catch (error) {
@@ -116,7 +116,7 @@ export const fluentCartAnalyticsHandlers = {
116
116
  },
117
117
  fcart_get_settings: async (args) => {
118
118
  try {
119
- const response = await makeWordPressRequest('GET', 'fc-manager/v1/fluentcart/settings');
119
+ const response = await makeWordPressRequest('GET', 'fc-manager/v1/fcart/settings');
120
120
  return { toolResult: { content: [{ type: 'text', text: JSON.stringify(response, null, 2) }] } };
121
121
  }
122
122
  catch (error) {
@@ -130,7 +130,7 @@ export const fluentCartAnalyticsHandlers = {
130
130
  params.per_page = args.per_page;
131
131
  if (args.page)
132
132
  params.page = args.page;
133
- const response = await makeWordPressRequest('GET', 'fc-manager/v1/fluentcart/tax/classes', params);
133
+ const response = await makeWordPressRequest('GET', 'fc-manager/v1/fcart/tax/classes', params);
134
134
  return { toolResult: { content: [{ type: 'text', text: JSON.stringify(response, null, 2) }] } };
135
135
  }
136
136
  catch (error) {
@@ -139,7 +139,7 @@ export const fluentCartAnalyticsHandlers = {
139
139
  },
140
140
  fcart_list_shipping_zones: async (args) => {
141
141
  try {
142
- const response = await makeWordPressRequest('GET', 'fc-manager/v1/fluentcart/shipping/zones');
142
+ const response = await makeWordPressRequest('GET', 'fc-manager/v1/fcart/shipping/zones');
143
143
  return { toolResult: { content: [{ type: 'text', text: JSON.stringify(response, null, 2) }] } };
144
144
  }
145
145
  catch (error) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wplaunchify/ml-mcp-server",
3
- "version": "2.7.15",
3
+ "version": "2.7.16",
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",