import { CleanSlateApiClient } from "./api/endpoints.js"; /** * MCP Server for CleanSlate API * Exposes food logging tools through the Model Context Protocol */ export declare class CleanSlateServer { private server; private _apiClient; constructor(); /** * Get API client instance (for tool implementations) */ get apiClient(): CleanSlateApiClient; /** * Set up MCP protocol handlers */ private setupHandlers; /** * Start the MCP server with stdio transport */ start(): Promise; /** * Gracefully shut down the server */ stop(): Promise; } //# sourceMappingURL=server.d.ts.map