UNPKG

mcp-tess

Version:

MCP server for executing Tess AI api

5 lines 525 B
import { Agent, ExecuteResponse, Message, ListAgentsResponse, ListAgentsParams } from "./types"; export declare const executeAgent: (agentId: number, messages: Message[], temperature?: string, model?: string, tools?: string, fileIds?: number[], rootId?: number | null, memoryCollections?: number[]) => Promise<ExecuteResponse>; export declare const listAgents: (params?: ListAgentsParams) => Promise<ListAgentsResponse>; export declare const getAgent: (agentId: number) => Promise<Agent>; //# sourceMappingURL=agents.d.ts.map