UNPKG

@mixio-pro/kalaasetu-mcp

Version:

A powerful Model Context Protocol server providing AI tools for content generation and analysis

8 lines (7 loc) 283 B
export interface StorageProvider { init(): Promise<void>; readFile(path: string): Promise<Buffer>; writeFile(path: string, data: Buffer | string): Promise<string>; // Returns public URL exists(path: string): Promise<boolean>; getPublicUrl(path: string): Promise<string>; }