@iqai/mcp-atp
Version:
Mcp server for ATP (IQAI's Agent Tokenization Platform) access
40 lines (39 loc) • 1.19 kB
TypeScript
import { z } from "zod";
declare const AddAgentLogParamsSchema: z.ZodObject<{
agentTokenContract: z.ZodString;
content: z.ZodString;
txHash: z.ZodOptional<z.ZodString>;
chainId: z.ZodOptional<z.ZodNumber>;
}, "strip", z.ZodTypeAny, {
agentTokenContract: string;
content: string;
txHash?: string | undefined;
chainId?: number | undefined;
}, {
agentTokenContract: string;
content: string;
txHash?: string | undefined;
chainId?: number | undefined;
}>;
export declare const addAgentLogTool: {
name: string;
description: string;
parameters: z.ZodObject<{
agentTokenContract: z.ZodString;
content: z.ZodString;
txHash: z.ZodOptional<z.ZodString>;
chainId: z.ZodOptional<z.ZodNumber>;
}, "strip", z.ZodTypeAny, {
agentTokenContract: string;
content: string;
txHash?: string | undefined;
chainId?: number | undefined;
}, {
agentTokenContract: string;
content: string;
txHash?: string | undefined;
chainId?: number | undefined;
}>;
execute: (args: z.infer<typeof AddAgentLogParamsSchema>) => Promise<string>;
};
export {};