(app: Argv)
| 5 | * Register the `mcp` command to start the MCP server. |
| 6 | */ |
| 7 | export function registerMcpCommand(app: Argv): void { |
| 8 | app.command('mcp', 'Start the MCP server (for use with MCP clients)', {}, async () => { |
| 9 | await startMcpServer(); |
| 10 | }); |
| 11 | } |
no test coverage detected