codev / src /cli /handlers /mcp.ts
chenbhao's picture
chore: remove obsolete test and vendor source, add CLI SDK docs
b7c4c8f
Raw
History Blame Contribute Delete
262 Bytes
/**
* 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);
}