Fix MCP server output (#474)

This commit is contained in:
Solomon
2025-08-14 15:35:59 +01:00
committed by GitHub
parent bed49d5704
commit 493ee43621

View File

@@ -99,11 +99,7 @@ function extractAndRun(baseName, launch) {
if (isMcpMode) {
extractAndRun("vibe-kanban-mcp", (bin) => {
const proc = spawn(bin, [], { stdio: ["pipe", "pipe", "pipe"] });
process.stdin.pipe(proc.stdin);
proc.stdout.pipe(process.stdout);
proc.stderr.pipe(process.stdout);
const proc = spawn(bin, [], { stdio: "inherit" });
proc.on("exit", (c) => process.exit(c || 0));
proc.on("error", (e) => {
console.error("❌ MCP server error:", e.message);