mcp-think-tank
Version:
Structured thinking and knowledge management tool for Model Context Protocol
17 lines (14 loc) • 587 B
JavaScript
/**
* This is the executable entry point for the mcp-think-tank
* when installed globally via npm
*/
// Import the console utility immediately to redirect logs
// Note: We can't import from utils/console since the path resolution is different for bin scripts
// So we'll still need this minimal redirect here for the bin script
console.log = (...args) => console.error(...args);
// Import the server module with error handling
import('../dist/src/server.js').catch(e => {
console.error(`Failed to start MCP Think Tank server:`, e);
process.exit(1);
});