import { Server } from "@modelcontextprotocol/sdk/server/index.js"; /** * Configuration options for the OData client */ export interface ODataConfig { host: string; database: string; username?: string; password?: string; ottoApiKey?: string; ottoPort?: number; } /** * Create and configure MCP server with OData client */ export declare function createServer(config?: Partial): Promise; /** * Start the MCP server with Express HTTP transport */ export declare function startServer(config?: Partial): Promise; //# sourceMappingURL=server.d.ts.map