-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathserver.js
More file actions
1019 lines (895 loc) · 29.2 KB
/
server.js
File metadata and controls
1019 lines (895 loc) · 29.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/env node
import { Server } from "@modelcontextprotocol/sdk/server/index.js";
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
import {
CallToolRequestSchema,
ListToolsRequestSchema,
} from "@modelcontextprotocol/sdk/types.js";
import { spawn, execSync } from "child_process";
import { resolve, join } from "path";
import { existsSync, writeFileSync, mkdirSync } from "fs";
import { tmpdir } from "os";
class RollDevServer {
// Directory for output log files
static OUTPUT_LOG_DIR = join(tmpdir(), "rolldev-mcp-logs");
constructor() {
this.server = new Server(
{
name: "rolldev-server",
version: "1.1.0",
},
{
capabilities: {
tools: {},
},
},
);
// Ensure log directory exists
this.ensureLogDirectory();
this.setupToolHandlers();
}
ensureLogDirectory() {
try {
if (!existsSync(RollDevServer.OUTPUT_LOG_DIR)) {
mkdirSync(RollDevServer.OUTPUT_LOG_DIR, { recursive: true });
}
} catch (error) {
// Log directory creation failed, will fallback to inline output
console.error(`Failed to create log directory: ${error.message}`);
}
}
/**
* Save command output to a log file (only when explicitly requested)
* @param {string} stdout - Command stdout
* @param {string} stderr - Command stderr
* @param {string} command - Command that was executed
* @param {string} cwd - Working directory
* @returns {string|null} - Path to log file, or null on failure
*/
saveOutputToFile(stdout, stderr, command, cwd) {
try {
const totalOutput = (stdout || "").length + (stderr || "").length;
const timestamp = new Date().toISOString().replace(/[:.]/g, "-");
const filename = `rolldev-output-${timestamp}.log`;
const filepath = join(RollDevServer.OUTPUT_LOG_DIR, filename);
const content = `RollDev Command Output Log
========================
Command: ${command}
Working Directory: ${cwd}
Timestamp: ${new Date().toISOString()}
Total Output Size: ${totalOutput} characters
=== STDOUT (${(stdout || "").length} chars) ===
${stdout || "(no output)"}
=== STDERR (${(stderr || "").length} chars) ===
${stderr || "(no errors)"}
`;
writeFileSync(filepath, content, "utf8");
return filepath;
} catch (error) {
console.error(`Failed to save output to file: ${error.message}`);
return null;
}
}
setupToolHandlers() {
this.server.setRequestHandler(ListToolsRequestSchema, async () => {
return {
tools: [
{
name: "rolldev_list_environments",
description:
"List all running RollDev environments with their directories (returns structured JSON)",
inputSchema: {
type: "object",
properties: {},
required: [],
},
},
{
name: "rolldev_start_project",
description: "Start a RollDev project environment",
inputSchema: {
type: "object",
properties: {
project_path: {
type: "string",
description: "Path to the project directory",
},
},
required: ["project_path"],
},
},
{
name: "rolldev_stop_project",
description: "Stop a RollDev project environment",
inputSchema: {
type: "object",
properties: {
project_path: {
type: "string",
description: "Path to the project directory",
},
},
required: ["project_path"],
},
},
{
name: "rolldev_start_svc",
description: "Start RollDev system services",
inputSchema: {
type: "object",
properties: {
project_path: {
type: "string",
description: "Path to the project directory",
},
},
required: ["project_path"],
},
},
{
name: "rolldev_stop_svc",
description: "Stop RollDev system services",
inputSchema: {
type: "object",
properties: {
project_path: {
type: "string",
description: "Path to the project directory",
},
},
required: ["project_path"],
},
},
{
name: "rolldev_db_query",
description: "Run a SQL query in the RollDev database",
inputSchema: {
type: "object",
properties: {
project_path: {
type: "string",
description: "Path to the project directory",
},
query: {
type: "string",
description: "SQL query to execute",
},
database: {
type: "string",
description: "Database name (optional, defaults to magento)",
default: "magento",
},
},
required: ["project_path", "query"],
},
},
{
name: "rolldev_php_script",
description: "Run a PHP script inside the php-fpm container",
inputSchema: {
type: "object",
properties: {
project_path: {
type: "string",
description: "Path to the project directory",
},
script_path: {
type: "string",
description:
"Path to the PHP script relative to project root",
},
args: {
type: "array",
description: "Additional arguments to pass to the script",
items: {
type: "string",
},
default: [],
},
},
required: ["project_path", "script_path"],
},
},
{
name: "rolldev_magento_cli",
description: "Run roll magento command inside the php-fpm container",
inputSchema: {
type: "object",
properties: {
project_path: {
type: "string",
description: "Path to the project directory",
},
command: {
type: "string",
description:
"Magento CLI command (without 'bin/magento' prefix)",
},
args: {
type: "array",
description: "Additional arguments for the command",
items: {
type: "string",
},
default: [],
},
save_output_to_file: {
type: "boolean",
description:
"Save full output to a log file for later investigation (useful for long output)",
default: false,
},
},
required: ["project_path", "command"],
},
},
{
name: "rolldev_composer",
description: "Run Composer commands inside the php-fpm container",
inputSchema: {
type: "object",
properties: {
project_path: {
type: "string",
description: "Path to the project directory",
},
command: {
type: "string",
description:
"Composer command to execute (e.g., 'install', 'update', 'require symfony/console', 'require-commerce')",
},
save_output_to_file: {
type: "boolean",
description:
"Save full output to a log file for later investigation (useful for long output)",
default: false,
},
},
required: ["project_path", "command"],
},
},
{
name: "rolldev_magento2_init",
description:
"Initialize a new Magento 2 project using RollDev's magento2-init command with automatic version configuration",
inputSchema: {
type: "object",
properties: {
project_name: {
type: "string",
description: "Name of the Magento 2 project (lowercase letters, numbers, and hyphens only)",
},
magento_version: {
type: "string",
description: "Magento version to install (default: 2.4.x). Examples: 2.4.x, 2.4.7, 2.4.7-p3, 2.4.8",
default: "2.4.x",
},
target_directory: {
type: "string",
description: "Directory to create project in (optional, defaults to current directory). Project will be created in a subdirectory named after the project.",
default: "",
},
},
required: ["project_name"],
},
},
],
};
});
this.server.setRequestHandler(CallToolRequestSchema, async (request) => {
switch (request.params.name) {
case "rolldev_list_environments":
return await this.listEnvironments();
case "rolldev_start_project":
return await this.startProject(request.params.arguments);
case "rolldev_stop_project":
return await this.stopProject(request.params.arguments);
case "rolldev_start_svc":
return await this.startSvc(request.params.arguments);
case "rolldev_stop_svc":
return await this.stopSvc(request.params.arguments);
case "rolldev_db_query":
return await this.runDbQuery(request.params.arguments);
case "rolldev_php_script":
return await this.runPhpScript(request.params.arguments);
case "rolldev_magento_cli":
return await this.runMagentoCli(request.params.arguments);
case "rolldev_composer":
return await this.runComposer(request.params.arguments);
case "rolldev_magento2_init":
return await this.magento2Init(request.params.arguments);
default:
throw new Error(`Unknown tool: ${request.params.name}`);
}
});
}
async listEnvironments() {
try {
const result = await this.executeCommand(
"roll",
["status"],
process.cwd(),
);
if (result.code === 0) {
const environments = this.parseEnvironmentList(result.stdout);
return {
content: [
{
type: "text",
text: JSON.stringify(
{
success: true,
command: "roll status",
exit_code: result.code,
environments: environments.map((env) => ({
name: env.name,
path: env.path,
url: env.url,
network: env.network,
containers: env.containers,
})),
raw_output: result.stdout,
},
null,
2,
),
},
],
isError: false,
};
} else {
return {
content: [
{
type: "text",
text: JSON.stringify(
{
success: false,
command: "roll status",
exit_code: result.code,
environments: [],
error: result.stderr || "Unknown error",
raw_output: result.stdout,
},
null,
2,
),
},
],
isError: true,
};
}
} catch (error) {
return {
content: [
{
type: "text",
text: JSON.stringify(
{
success: false,
command: "roll status",
exit_code: -1,
environments: [],
error: error.message,
raw_output: error.stdout || "",
raw_errors: error.stderr || "",
},
null,
2,
),
},
],
isError: true,
};
}
}
parseEnvironmentList(output) {
const environments = [];
const lines = output.split("\n");
let currentProject = null;
let currentPath = null;
let currentUrl = null;
let currentNetwork = null;
let currentContainers = null;
for (const line of lines) {
const trimmed = line.trim();
// Skip empty lines and headers
if (
!trimmed ||
trimmed.includes("No running environments found") ||
trimmed.includes("Found the following") ||
trimmed.includes("RollDev Services")
) {
continue;
}
// Remove ANSI color codes for parsing
const cleanLine = trimmed.replace(/\x1b\[[0-9;]*m/g, "");
// Look for project name pattern: "ai-demo a magento2 project"
const projectMatch = cleanLine.match(/^(\S+)\s+a\s+(\w+)\s+project$/);
if (projectMatch) {
currentProject = projectMatch[1];
continue;
}
// Look for project directory pattern: "Project Directory: /path/to/project"
const directoryMatch = cleanLine.match(/^\s*Project Directory:\s*(.+)$/);
if (directoryMatch) {
currentPath = directoryMatch[1];
continue;
}
// Look for project URL pattern: "Project URL: https://app.ai-demo.test"
const urlMatch = cleanLine.match(/^\s*Project URL:\s*(.+)$/);
if (urlMatch) {
currentUrl = urlMatch[1];
continue;
}
// Look for docker network pattern: "Docker Network: ai-demo_default"
const networkMatch = cleanLine.match(/^\s*Docker Network:\s*(.+)$/);
if (networkMatch) {
currentNetwork = networkMatch[1];
continue;
}
// Look for containers running pattern: "Containers Running: 9"
const containersMatch = cleanLine.match(/^\s*Containers Running:\s*(\d+)$/);
if (containersMatch && currentProject) {
currentContainers = parseInt(containersMatch[1]);
// Add the environment when we have complete information
environments.push({
name: currentProject,
path: currentPath,
url: currentUrl,
network: currentNetwork,
containers: currentContainers,
raw: line,
});
// Reset for next project
currentProject = null;
currentPath = null;
currentUrl = null;
currentNetwork = null;
currentContainers = null;
continue;
}
// Stop parsing when we hit the services section
if (cleanLine.includes("NAME") && cleanLine.includes("STATE")) {
break;
}
}
return environments;
}
/**
* Helper function to get environment list for internal use by other tools
* Returns a simplified array of {name, path} objects
*/
async getEnvironmentList() {
try {
const result = await this.executeCommand(
"roll",
["status"],
process.cwd(),
);
if (result.code === 0) {
const environments = this.parseEnvironmentList(result.stdout);
return environments.map((env) => ({
name: env.name,
path: env.path,
}));
} else {
return [];
}
} catch (error) {
return [];
}
}
async startProject(args) {
const { project_path } = args;
return await this.executeRollCommand(
project_path,
["env", "up"],
"Starting RollDev project environment",
);
}
async stopProject(args) {
const { project_path } = args;
return await this.executeRollCommand(
project_path,
["env", "down"],
"Stopping RollDev project environment",
);
}
async startSvc(args) {
const { project_path } = args;
return await this.executeRollCommand(
project_path,
["svc", "up"],
"Starting RollDev system services",
);
}
async stopSvc(args) {
const { project_path } = args;
return await this.executeRollCommand(
project_path,
["svc", "down"],
"Stopping RollDev system services",
);
}
async runDbQuery(args) {
const { project_path, query, database = "magento" } = args;
const rollCommand = [
"db",
"connect",
"-e",
query,
];
return await this.executeRollCommand(
project_path,
rollCommand,
`Running database query in ${database}`,
);
}
async runPhpScript(args) {
const { project_path, script_path, args: scriptArgs = [] } = args;
const rollCommand = [
"cli",
"php",
script_path,
...scriptArgs,
];
return await this.executeRollCommand(
project_path,
rollCommand,
`Running PHP script: ${script_path}`,
);
}
async runMagentoCli(args) {
const { project_path, command, args: commandArgs = [], save_output_to_file = false } = args;
const rollCommand = [
"magento",
command,
...commandArgs,
];
// 5 minute timeout for most Magento commands
const timeoutMs = 300000;
return await this.executeRollCommand(
project_path,
rollCommand,
`Running Magento CLI: roll magento ${command}`,
timeoutMs,
save_output_to_file,
);
}
async runComposer(args) {
const { project_path, command, save_output_to_file = false } = args;
if (!project_path) {
throw new Error("project_path is required");
}
if (!command) {
throw new Error("command is required");
}
const normalizedProjectPath = project_path.replace(/\/+$/, "");
const absoluteProjectPath = resolve(normalizedProjectPath);
if (!existsSync(absoluteProjectPath)) {
throw new Error(
`Project directory does not exist: ${absoluteProjectPath}`,
);
}
try {
// Parse the command string to handle arguments properly
const commandParts = command.trim().split(/\s+/);
const rollCommand = [
"composer",
...commandParts,
];
// 10 minute timeout for composer operations (can be slow)
const timeoutMs = 600000;
const result = await this.executeCommand(
"roll",
rollCommand,
absoluteProjectPath,
timeoutMs,
);
const commandStr = `roll composer ${command}`;
const isSuccess = result.code === 0;
// Save output to file only when explicitly requested
const logFilePath = save_output_to_file
? this.saveOutputToFile(result.stdout, result.stderr, commandStr, absoluteProjectPath)
: null;
let responseText;
if (logFilePath) {
const outputPreview = (result.stdout || "").substring(0, 500);
const stderrPreview = (result.stderr || "").substring(0, 500);
responseText = `Composer command ${isSuccess ? "completed successfully" : "failed"}!
Command: ${commandStr}
Working directory: ${absoluteProjectPath}
Exit Code: ${result.code}${result.timedOut ? " (TIMED OUT)" : ""}
📁 Full output saved to file:
${logFilePath}
Output Preview (first 500 chars):
${outputPreview || "(no output)"}${(result.stdout || "").length > 500 ? "\n...(truncated)" : ""}
Errors Preview (first 500 chars):
${stderrPreview || "(no errors)"}${(result.stderr || "").length > 500 ? "\n...(truncated)" : ""}`;
} else {
responseText = `Composer command ${isSuccess ? "completed successfully" : "failed"}!
Command: ${commandStr}
Working directory: ${absoluteProjectPath}
Exit Code: ${result.code}${result.timedOut ? " (TIMED OUT)" : ""}
Output:
${result.stdout || "(no output)"}
Errors:
${result.stderr || "(no errors)"}`;
}
return {
content: [
{
type: "text",
text: responseText,
},
],
isError: !isSuccess,
};
} catch (error) {
const commandStr = `roll composer ${command}`;
// Save error output to file only when explicitly requested
const logFilePath = save_output_to_file
? this.saveOutputToFile(error.stdout, error.stderr, commandStr, absoluteProjectPath)
: null;
let responseText;
if (logFilePath) {
responseText = `Failed to execute Composer command:
Command: ${commandStr}
Working directory: ${absoluteProjectPath}
Error: ${error.message}
📁 Full output saved to file:
${logFilePath}`;
} else {
responseText = `Failed to execute Composer command:
Command: ${commandStr}
Working directory: ${absoluteProjectPath}
Error: ${error.message}
Output:
${error.stdout || "(no output)"}
Errors:
${error.stderr || "(no errors)"}`;
}
return {
content: [
{
type: "text",
text: responseText,
},
],
isError: true,
};
}
}
async executeRollCommand(project_path, rollArgs, description, timeoutMs = 300000, saveToFile = false) {
if (!project_path) {
throw new Error("project_path is required");
}
const normalizedProjectPath = project_path.replace(/\/+$/, "");
const absoluteProjectPath = resolve(normalizedProjectPath);
if (!existsSync(absoluteProjectPath)) {
throw new Error(
`Project directory does not exist: ${absoluteProjectPath}`,
);
}
try {
const result = await this.executeCommand(
"roll",
rollArgs,
absoluteProjectPath,
timeoutMs,
);
const commandStr = `roll ${rollArgs.join(" ")}`;
const isSuccess = result.code === 0;
// Save output to file only when explicitly requested
const logFilePath = saveToFile
? this.saveOutputToFile(result.stdout, result.stderr, commandStr, absoluteProjectPath)
: null;
let responseText;
if (logFilePath) {
// Output saved to file
const outputPreview = (result.stdout || "").substring(0, 500);
const stderrPreview = (result.stderr || "").substring(0, 500);
responseText = `${description} ${isSuccess ? "completed successfully" : "failed"}!
Command: ${commandStr}
Working directory: ${absoluteProjectPath}
Exit Code: ${result.code}${result.timedOut ? " (TIMED OUT)" : ""}
📁 Full output saved to file:
${logFilePath}
Output Preview (first 500 chars):
${outputPreview || "(no output)"}${(result.stdout || "").length > 500 ? "\n...(truncated)" : ""}
Errors Preview (first 500 chars):
${stderrPreview || "(no errors)"}${(result.stderr || "").length > 500 ? "\n...(truncated)" : ""}`;
} else {
// Return inline output
responseText = `${description} ${isSuccess ? "completed successfully" : "failed"}!
Command: ${commandStr}
Working directory: ${absoluteProjectPath}
Exit Code: ${result.code}${result.timedOut ? " (TIMED OUT)" : ""}
Output:
${result.stdout || "(no output)"}
Errors:
${result.stderr || "(no errors)"}`;
}
return {
content: [
{
type: "text",
text: responseText,
},
],
isError: !isSuccess,
};
} catch (error) {
const commandStr = `roll ${rollArgs.join(" ")}`;
// Save error output to file only when explicitly requested
const logFilePath = saveToFile
? this.saveOutputToFile(error.stdout, error.stderr, commandStr, absoluteProjectPath)
: null;
let responseText;
if (logFilePath) {
responseText = `Failed to execute command:
Command: ${commandStr}
Working directory: ${absoluteProjectPath}
Error: ${error.message}
📁 Full output saved to file:
${logFilePath}`;
} else {
responseText = `Failed to execute command:
Command: ${commandStr}
Working directory: ${absoluteProjectPath}
Error: ${error.message}
Output:
${error.stdout || "(no output)"}
Errors:
${error.stderr || "(no errors)"}`;
}
return {
content: [
{
type: "text",
text: responseText,
},
],
isError: true,
};
}
}
async magento2Init(args) {
try {
const {
project_name,
magento_version = "2.4.x",
target_directory = "",
} = args;
// Build the command arguments
const rollCommand = ["magento2-init", project_name];
if (magento_version) {
rollCommand.push(magento_version);
}
if (target_directory) {
rollCommand.push(target_directory);
}
// Determine working directory (current directory or target_directory)
const workingDir = target_directory ? resolve(target_directory) : process.cwd();
// 15 minute timeout for full Magento 2 initialization (very long-running)
const timeoutMs = 900000;
// Execute the magento2-init command
const result = await this.executeCommand(
"roll",
rollCommand,
workingDir,
timeoutMs,
);
const commandStr = `roll ${rollCommand.join(" ")}`;
const isSuccess = result.code === 0;
if (isSuccess) {
const projectPath = target_directory ?
`${resolve(target_directory)}/${project_name}` :
`${process.cwd()}/${project_name}`;
return {
content: [
{
type: "text",
text: `Magento 2 project '${project_name}' initialized successfully!\n\nCommand: ${commandStr}\nMagento Version: ${magento_version}\nProject Path: ${projectPath}\n\nThe command has automatically:\n- Configured compatible software versions\n- Set up the Docker environment\n- Generated SSL certificates\n- Installed Magento via Composer\n- Configured database, Redis, and search engine\n- Created admin user with 2FA\n- Set developer mode\n\nAccess URLs:\n- Frontend: https://app.${project_name}.test/\n- Admin Panel: https://app.${project_name}.test/shopmanager/\n\nAdmin credentials are saved in admin-credentials.txt in the project directory.\n\nOutput:\n${result.stdout}`,
},
],
isError: false,
};
} else {
return {
content: [
{
type: "text",
text: `Failed to initialize Magento 2 project '${project_name}'!\n\nCommand: ${commandStr}\nExit Code: ${result.code}\n\nError: ${result.stderr || "Unknown error"}\n\nOutput:\n${result.stdout || "(no output)"}`,
},
],
isError: true,
};
}
} catch (error) {
return {
content: [
{
type: "text",
text: `Failed to execute Magento 2 initialization:\n\nProject Name: ${args.project_name}\nMagento Version: ${args.magento_version || "2.4.x"}\nError: ${error.message}\n\nOutput:\n${error.stdout || "(no output)"}\n\nErrors:\n${error.stderr || "(no errors)"}`,
},
],
isError: true,
};
}
}
executeCommand(command, args = [], cwd = process.cwd(), timeoutMs = 300000) {
return new Promise((resolve, reject) => {
const childProcess = spawn(command, args, {
cwd,
stdio: ["pipe", "pipe", "pipe"],
});
let stdout = "";
let stderr = "";
let resolved = false;
// Helper to resolve only once
const resolveOnce = (result) => {
if (!resolved) {
resolved = true;
clearTimeout(timeout);
resolve(result);
}
};
const rejectOnce = (error) => {
if (!resolved) {
resolved = true;
clearTimeout(timeout);
reject(error);
}
};
// Timeout handler
const timeout = setTimeout(() => {
if (!resolved) {
// Try graceful termination first
childProcess.kill('SIGTERM');
// Force kill after 5 seconds if still running
setTimeout(() => {
if (!resolved) {
childProcess.kill('SIGKILL');
}
}, 5000);
resolveOnce({
stdout,
stderr: stderr + `\n[Command timed out after ${timeoutMs / 1000}s]`,
code: -1,
timedOut: true,
});
}
}, timeoutMs);
childProcess.stdout.on("data", (data) => {
stdout += data.toString();
});
childProcess.stderr.on("data", (data) => {
stderr += data.toString();
});
childProcess.on("close", (code) => {
resolveOnce({ stdout, stderr, code });
});
// Also listen to 'exit' as backup (some processes emit exit but not close)
childProcess.on("exit", (code) => {
resolveOnce({ stdout, stderr, code });
});
childProcess.on("error", (error) => {