@mseep/supabase-mcp
Version:
MCP server for Supabase CRUD operations
24 lines • 534 B
TypeScript
export interface SupabaseConfig {
url: string;
anonKey: string;
serviceRoleKey: string;
}
export interface DatabaseResult<T = any> {
data: T | null;
error: any;
}
export interface FetchTablesResult {
tables: {
name: string;
schema: string;
columns: {
name: string;
type: string;
is_nullable: boolean;
is_identity: boolean;
is_primary_key: boolean;
}[];
}[];
error: any;
}
//# sourceMappingURL=supabase.d.ts.map