//#region src/utils/arguments.d.ts type NodeTransport = "stdio" | "http"; //#endregion //#region src/index.d.ts /** * Create an unconnected MCP server for embedding in a Node application. * * This entry point intentionally contains no Node runtime bootstrap. It does * not read process state, probe Hevy, install process handlers, initialize * telemetry, or connect a transport. The embedding application owns those * concerns and the transport lifecycle. */ declare function createNodeMcpServer({ apiKey }: { apiKey: string; }, _transport?: NodeTransport, lifecycleSignal?: AbortSignal): Promise; /** * Compatibility wrapper for the executable runtime. Importing this module * does not evaluate the runtime bootstrap; it is loaded only when invoked. */ declare function runStdioServer(): Promise; /** * Compatibility wrapper for the executable runtime. Importing this module * does not evaluate the runtime bootstrap; it is loaded only when invoked. */ declare function runServer(): Promise; //#endregion export { createNodeMcpServer, runServer, runStdioServer }; //# sourceMappingURL=index.d.mts.map