/** * MCP Server Setup * * Creates and configures the MCP server with tools and resources * for Convex database exploration. * * Supports MCP Apps (SEP-1865) for embedded UI rendering in ChatGPT, * Claude web, VS Code, and other MCP Apps compatible hosts. */ /** * Store dynamically generated HTML for MCP Apps resource serving */ export declare function storeDynamicHtml(resourceUri: string, html: string): void; /** * Get stored dynamic HTML */ export declare function getDynamicHtml(resourceUri: string): string | undefined; export interface ConvexMcpServer { startStdio: () => Promise; startHttp: (port: number) => Promise; } export declare function createServer(): Promise; //# sourceMappingURL=server.d.ts.map