@iqai/mcp-atp
Version:
Mcp server for ATP (IQAI's Agent Tokenization Platform) access
28 lines (27 loc) • 689 B
TypeScript
import { z } from "zod";
declare const BuyAgentParamsSchema: z.ZodObject<{
tokenContract: z.ZodString;
amount: z.ZodString;
}, "strip", z.ZodTypeAny, {
amount: string;
tokenContract: string;
}, {
amount: string;
tokenContract: string;
}>;
export declare const buyAgentTool: {
name: string;
description: string;
parameters: z.ZodObject<{
tokenContract: z.ZodString;
amount: z.ZodString;
}, "strip", z.ZodTypeAny, {
amount: string;
tokenContract: string;
}, {
amount: string;
tokenContract: string;
}>;
execute: (args: z.infer<typeof BuyAgentParamsSchema>) => Promise<string>;
};
export {};