Skip to main content
Glama
mcp-think-tank.js761 B
#!/usr/bin/env node /** * 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); // Handle --version flag directly in the bin script for faster response if (process.argv.includes('--version')) { console.error('mcp-think-tank v2.0.7'); process.exit(0); } // Import the server module with error handling import('../dist/server.js').catch(e => { console.error(`Failed to start MCP Think Tank server:`, e); process.exit(1); });

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/flight505/mcp-think-tank'

If you have feedback or need assistance with the MCP directory API, please join our Discord server