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
#!/usr/bin/env node
/**
* This is the executable entry point for the mcp-think-tank
* when installed globally via npm
*/
// Redirect logs
console.log = (...args) => console.error(...args);
// Use dynamic import which works in both ESM and CommonJS
import('../dist/server.js').catch(e => {
console.error(`Failed to start MCP Think Tank server:`, e);
process.exit(1);
});