UNPKG

bc-code-intelligence-mcp

Version:

BC Code Intelligence MCP Server - Complete Specialist Bundle with AI-driven expert consultation, seamless handoffs, and context-preserving workflows

94 lines 2.17 kB
export declare function createStreamlinedHandlers(server: any, services: any): { find_bc_knowledge: (args: any) => Promise<{ content: { type: string; text: string; }[]; isError?: undefined; error?: undefined; } | { isError: boolean; error: any; content: { type: string; text: string; }[]; }>; ask_bc_expert: (args: any) => Promise<{ content: { type: string; text: string; }[]; isError?: undefined; error?: undefined; } | { isError: boolean; error: any; content: { type: string; text: string; }[]; }>; analyze_al_code: (args: any) => Promise<{ content: { type: string; text: string; }[]; }>; get_bc_topic: (args: any) => Promise<{ content: { type: string; text: string; }[]; }>; start_bc_workflow: (args: any) => Promise<{ content: { type: string; text: string; }[]; isError?: undefined; error?: undefined; } | { isError: boolean; error: string; content: { type: string; text: string; }[]; } | { content: { type: string; text: string; }[]; isError: boolean; error?: undefined; }>; advance_workflow: (args: any) => Promise<{ isError: boolean; error: string; content: { type: string; text: string; }[]; } | { content: { type: string; text: string; }[]; isError?: undefined; error?: undefined; }>; get_workflow_help: (args: any) => Promise<{ content: { type: string; text: any; }[]; }>; get_bc_help: (args: any) => Promise<{ content: { type: string; text: string; }[]; }>; }; //# sourceMappingURL=streamlined-handlers.d.ts.map