mcp-tess
Version:
MCP server for executing Tess AI api
6 lines • 674 B
TypeScript
import { ListMemoryCollectionsResponse, CreateMemoryCollectionResponse, UpdateMemoryCollectionResponse, DeleteMemoryCollectionResponse } from "./types";
export declare const listMemoryCollections: (page?: number, perPage?: number, search?: string) => Promise<ListMemoryCollectionsResponse>;
export declare const createMemoryCollection: (name: string) => Promise<CreateMemoryCollectionResponse>;
export declare const updateMemoryCollection: (collectionId: number, name: string) => Promise<UpdateMemoryCollectionResponse>;
export declare const deleteMemoryCollection: (collectionId: number) => Promise<DeleteMemoryCollectionResponse>;
//# sourceMappingURL=collections.d.ts.map