UNPKG

@spaik/mcp-server-roi

Version:

MCP server for AI ROI prediction and tracking with Monte Carlo simulations

15 lines 717 B
import { Database } from './types/database.js'; export declare const supabase: import("@supabase/supabase-js").SupabaseClient<Database, "public", any>; export declare const dataAccess: { systemQuery<T = any>(query: () => Promise<T>): Promise<T>; migrateProjectOwnership(projectId: string, userId: string): Promise<void>; checkDatabaseHealth(): Promise<boolean>; getSystemStats(): Promise<{ totalProjects: number; byIndustry: Record<string, number>; byStatus: Record<string, number>; }>; }; export type DataAccess = typeof dataAccess; export declare const mcpDb: import("@supabase/supabase-js").SupabaseClient<Database, "public", any>; //# sourceMappingURL=supabase.d.ts.map