UNPKG

postgres-mcp-tools

Version:

PostgreSQL-based memory system with vector search capabilities for AI applications, including MCP integration for Claude

8 lines (7 loc) 237 B
/** * Generate an embedding for text content * * @param text - The text to generate embeddings for * @returns The embedding as a PostgreSQL vector string */ export declare const generateEmbedding: (text: string) => Promise<string>;