UNPKG

youling-task

Version:

基于POMDP的研发任务分解工具,支持MCP协议

16 lines (15 loc) 553 B
export interface YoulingTaskServerOptions { port?: number; secretKey?: string; serverName?: string; serverVersion?: string; } /** * 创建并启动YoulingTask MCP服务器 * @param options 服务器配置选项 * @returns 返回Express应用实例和服务器实例 */ export declare function startYoulingTaskServer(options?: YoulingTaskServerOptions): Promise<{ app: import("express-serve-static-core").Express; server: import("http").Server<typeof import("http").IncomingMessage, typeof import("http").ServerResponse>; }>;