@wplaunchify/ml-mcp-server 2.7.5 → 2.7.7

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.
@@ -168,28 +168,27 @@ function getFilteredTools() {
168
168
  console.error(`⚠️ Unknown ENABLED_TOOLS value: ${enabledTools}. Loading all tools.`);
169
169
  }
170
170
  // ENABLED_TOOLS not set or 'all' - load all tools
171
- // No plugin detection during startup to prevent Claude Desktop crashes
171
+ // NOTE: Do NOT include toolCategories.pro here pro tools are already in wordpress category.
172
+ // Including both causes "Tool X is already registered" crash.
172
173
  return [
173
174
  ...toolCategories.wordpress,
174
175
  ...toolCategories.fluentcommunity,
175
176
  ...toolCategories.fluentcart,
176
177
  ...toolCategories.fluentcrm,
177
178
  ...toolCategories.mlplugins,
178
- ...toolCategories.pro,
179
179
  ...toolCategories.debug
180
180
  ];
181
181
  }
182
182
  function getFilteredHandlers() {
183
183
  const enabledTools = process.env.ENABLED_TOOLS?.toLowerCase();
184
184
  if (!enabledTools || enabledTools === 'all') {
185
- // No filter or 'all' - load all handlers
185
+ // NOTE: Do NOT include handlerCategories.pro pro handlers are already in wordpress category.
186
186
  return {
187
187
  ...handlerCategories.wordpress,
188
188
  ...handlerCategories.fluentcommunity,
189
189
  ...handlerCategories.fluentcart,
190
190
  ...handlerCategories.fluentcrm,
191
191
  ...handlerCategories.mlplugins,
192
- ...handlerCategories.pro,
193
192
  ...handlerCategories.debug
194
193
  };
195
194
  }
@@ -222,7 +221,6 @@ function getFilteredHandlers() {
222
221
  ...handlerCategories.fluentcart,
223
222
  ...handlerCategories.fluentcrm,
224
223
  ...handlerCategories.mlplugins,
225
- ...handlerCategories.pro,
226
224
  ...handlerCategories.debug
227
225
  };
228
226
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wplaunchify/ml-mcp-server",
3
- "version": "2.7.5",
3
+ "version": "2.7.7",
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",