UNPKG

postgres-mcp-tools

Version:

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

10 lines (9 loc) 198 B
import { MemoryManagementTool } from './memory-management-tool.js'; /** * Register all MCP tools */ export const registerTools = () => { return [ new MemoryManagementTool(), ]; };