From f4e2319f30429c4408c04a1ae329271431195702 Mon Sep 17 00:00:00 2001 From: root Date: Thu, 9 Oct 2025 06:57:33 +0200 Subject: [PATCH] Fix: Remove stderr redirect and explicitly set MCP_TRANSPORT MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Remove 2>/dev/null to see actual errors - Explicitly export MCP_TRANSPORT=stdio - Helps debug connection issues 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- start-mcp.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/start-mcp.sh b/start-mcp.sh index 191955a..a478845 100755 --- a/start-mcp.sh +++ b/start-mcp.sh @@ -16,6 +16,7 @@ fi # Disable all logging for MCP stdio protocol export MCP_LOG_LEVEL=silent +export MCP_TRANSPORT=stdio -# Start the server with ts-node, suppress all logs -exec npx ts-node src/server.ts 2>/dev/null +# Start the server with ts-node +exec npx ts-node src/server.ts