File size: 262 Bytes
b7c4c8f
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
/**
 * MCP command handlers
 * These handlers are used by the CLI MCP commands
 */

export async function mcpServeHandler(options: { debug?: boolean; verbose?: boolean }): Promise<void> {
  console.error('MCP serve handler not implemented');
  process.exit(1);
}