UNPKG

permamind

Version:

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

8 lines (7 loc) 286 B
import { BaseToolFactory } from "../core/index.js"; import { GetUserHubIdCommand, GetUserPublicKeyCommand, } from "./commands/index.js"; export class UserToolFactory extends BaseToolFactory { getToolClasses() { return [GetUserPublicKeyCommand, GetUserHubIdCommand]; } }