mcp-think-tank
Version:
Structured thinking and knowledge management tool for Model Context Protocol
11 lines • 462 B
TypeScript
/**
* This module ensures console output doesn't interfere with JSON communication over stdio.
*
* In production, we need to handle console output carefully because:
* - In debug mode: console.log redirects to console.error
* - In production mode: console.log is suppressed to avoid interfering with stdio
*
* Note: This is crucial since any stray output directly to stdout will break the JSON parsing.
*/
export {};
//# sourceMappingURL=console.d.ts.map