Fix: Remove stderr redirect and explicitly set MCP_TRANSPORT

- 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 <noreply@anthropic.com>
This commit is contained in:
root
2025-10-09 06:57:33 +02:00
parent 4908b422b4
commit f4e2319f30

View File

@@ -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