import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; import type { HttpMcpServerOptions, HttpMcpServerResult } from "./http-transport.js"; /** * Create a tasks-adapter MCP server with breakpoint, responder, and native task tools registered. */ export declare function createBreakpointMcpServer(): McpServer; /** * Start the tasks-adapter MCP server on stdio transport. */ export declare function startBreakpointMcpServer(): Promise; /** * Start the tasks-adapter MCP server on HTTP transport with Streamable HTTP. * * The HTTP server provides: * - POST/GET/DELETE /mcp -- MCP Streamable HTTP transport * - GET /healthz -- health check * - Bearer token authentication (when BPX_MCP_TOKEN is set or token is provided) */ export declare function startHttpBreakpointMcpServer(options?: HttpMcpServerOptions): Promise; //# sourceMappingURL=server.d.ts.map