UNPKG

claude-expert-workflow-mcp

Version:

Production-ready MCP server for AI-powered product development consultation through specialized expert roles. Enterprise-grade with memory management, monitoring, and Claude Code integration.

19 lines 657 B
#!/usr/bin/env node import { productionMCPServer } from './mcp/productionServer.js'; async function main() { try { await productionMCPServer.start(); } catch (error) { // Console error disabled for MCP servers to avoid stdio protocol corruption // console.error('Failed to start production MCP server:', error); process.exit(1); } } // The production server handles its own shutdown logic main().catch(error => { // Console error disabled for MCP servers to avoid stdio protocol corruption // console.error('Unhandled error in main:', error); process.exit(1); }); //# sourceMappingURL=index.js.map