@iqai/mcp-fraxlend
Version:
Mcp server for Fraxlend access
22 lines (21 loc) • 611 B
TypeScript
import { z } from "zod";
declare const agentPositionsParamsSchema: z.ZodObject<{
address: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
address?: string | undefined;
}, {
address?: string | undefined;
}>;
export declare const agentPositionsTool: {
name: string;
description: string;
parameters: z.ZodObject<{
address: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
address?: string | undefined;
}, {
address?: string | undefined;
}>;
execute: (args: z.infer<typeof agentPositionsParamsSchema>) => Promise<string>;
};
export {};