context-crystallizer
Version:
AI Crystallization Engineering for Large Repositories - Transform massive repositories into crystallized, AI-consumable knowledge through systematic analysis and optimization. Crystallization extracts meaningful context from any readable files.
13 lines • 497 B
JavaScript
import { Command } from 'commander';
import chalk from 'chalk';
export function createMcpCommand() {
return new Command('mcp')
.description('Start MCP server for AI agent integration')
.action(async () => {
console.log(chalk.blue('🚀 Starting Context Crystallizer MCP server...'));
// Import and start the MCP server
const { startMcpServer } = await import('../mcp-server.js');
await startMcpServer();
});
}
//# sourceMappingURL=mcp.js.map