UNPKG

permamind

Version:

An MCP server that provides an immortal memory layer for AI agents and clients

9 lines (8 loc) 342 B
import { BaseToolFactory } from "../core/index.js"; import { AddMemoryCommand } from "./commands/AddMemoryCommand.js"; import { SearchMemoriesCommand } from "./commands/SearchMemoriesCommand.js"; export class MemoryToolFactory extends BaseToolFactory { getToolClasses() { return [AddMemoryCommand, SearchMemoriesCommand]; } }