@iqai/mcp-atp
Version:
Mcp server for ATP (IQAI's Agent Tokenization Platform) access
7 lines (6 loc) • 393 B
TypeScript
import { type GetLogsParams, type GetLogsResponse, type LogEntry, type PostLogParams } from "../types.js";
export declare class AgentLogsService {
getLogs({ agentTokenContract, page, limit, }: GetLogsParams): Promise<GetLogsResponse>;
addLog({ agentTokenContract, content, apiKey, txHash, chainId, }: PostLogParams): Promise<LogEntry>;
formatLogs(data: GetLogsResponse): string;
}