UNPKG

@iqai/mcp-bamm

Version:

MCP server for bamm (borrow automated market maker)

22 lines (21 loc) 701 B
import type { Tool } from "fastmcp"; import { z } from "zod"; declare const borrowToolParams: 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 BorrowToolParams = z.infer<typeof borrowToolParams>; export declare const borrowTool: Tool<undefined, typeof borrowToolParams>; export {};