UNPKG

postgres-mcp-tools

Version:

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

12 lines (10 loc) 252 B
import { Tool } from '../typescript-sdk-wrapper.js'; import { MemoryManagementTool } from './memory-management-tool.js'; /** * Register all MCP tools */ export const registerTools = (): Tool[] => { return [ new MemoryManagementTool(), ]; };