/ commands / mcp / index.ts
index.ts
 1  import type { Command } from '../../commands.js'
 2  
 3  const mcp = {
 4    type: 'local-jsx',
 5    name: 'mcp',
 6    description: 'Manage MCP servers',
 7    immediate: true,
 8    argumentHint: '[enable|disable [server-name]]',
 9    load: () => import('./mcp.js'),
10  } satisfies Command
11  
12  export default mcp