mcp-tess
Version:
MCP server for executing Tess AI api
6 lines • 602 B
TypeScript
import { CreateMemoryResponse, UpdateMemoryResponse, DeleteMemoryResponse, ListMemoriesResponse } from "./types";
export declare const createMemory: (memory: string, collectionId?: number) => Promise<CreateMemoryResponse>;
export declare const updateMemory: (memoryId: number, memory: string, collectionId?: number) => Promise<UpdateMemoryResponse>;
export declare const deleteMemory: (memoryId: number) => Promise<DeleteMemoryResponse>;
export declare const listMemories: (page?: number, perPage?: number, collectionId?: number) => Promise<ListMemoriesResponse>;
//# sourceMappingURL=memories.d.ts.map