claude-flow-novice 1.5.9 → 1.5.10
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.
|
@@ -68,7 +68,8 @@ async function startMcpServer(subArgs, flags) {
|
|
|
68
68
|
|
|
69
69
|
const __filename = fileURLToPath(import.meta.url);
|
|
70
70
|
const __dirname = path.dirname(__filename);
|
|
71
|
-
|
|
71
|
+
// Use the SDK-based MCP server from dist directory
|
|
72
|
+
const mcpServerPath = path.join(__dirname, '../../mcp/mcp-server-sdk.js');
|
|
72
73
|
|
|
73
74
|
// Check if the file exists, and log the path for debugging
|
|
74
75
|
const fs = await import('fs');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-flow-novice",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.10",
|
|
4
4
|
"description": "Standalone Claude Flow for beginners - AI agent orchestration made easy with enhanced TDD testing pipeline. Enhanced init command creates complete agent system, MCP configuration with 30 essential tools, and automated hooks with single-file testing, real-time coverage analysis, and advanced validation. Fully standalone with zero external dependencies, complete project setup in one command.",
|
|
5
5
|
"mcpName": "io.github.ruvnet/claude-flow",
|
|
6
6
|
"main": ".claude-flow-novice/dist/index.js",
|
|
@@ -68,7 +68,8 @@ async function startMcpServer(subArgs, flags) {
|
|
|
68
68
|
|
|
69
69
|
const __filename = fileURLToPath(import.meta.url);
|
|
70
70
|
const __dirname = path.dirname(__filename);
|
|
71
|
-
|
|
71
|
+
// Use the SDK-based MCP server from dist directory
|
|
72
|
+
const mcpServerPath = path.join(__dirname, '../../mcp/mcp-server-sdk.js');
|
|
72
73
|
|
|
73
74
|
// Check if the file exists, and log the path for debugging
|
|
74
75
|
const fs = await import('fs');
|