@iqai/mcp-bamm
Version:
MCP server for bamm (borrow automated market maker)
22 lines (21 loc) • 696 B
TypeScript
import type { Tool } from "fastmcp";
import { z } from "zod";
declare const repayToolParams: z.ZodObject<{
bammAddress: z.ZodString;
amount: z.ZodString;
borrowToken: z.ZodOptional<z.ZodString>;
borrowTokenSymbol: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
amount: string;
bammAddress: string;
borrowToken?: string | undefined;
borrowTokenSymbol?: string | undefined;
}, {
amount: string;
bammAddress: string;
borrowToken?: string | undefined;
borrowTokenSymbol?: string | undefined;
}>;
export type RepayToolParams = z.infer<typeof repayToolParams>;
export declare const repayTool: Tool<undefined, typeof repayToolParams>;
export {};