UNPKG

@iqai/mcp-bamm

Version:

MCP server for bamm (borrow automated market maker)

22 lines (21 loc) 775 B
import type { Tool } from "fastmcp"; import { z } from "zod"; declare const removeCollateralToolParams: z.ZodObject<{ bammAddress: z.ZodString; amount: z.ZodString; collateralToken: z.ZodOptional<z.ZodString>; collateralTokenSymbol: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { amount: string; bammAddress: string; collateralToken?: string | undefined; collateralTokenSymbol?: string | undefined; }, { amount: string; bammAddress: string; collateralToken?: string | undefined; collateralTokenSymbol?: string | undefined; }>; export type RemoveCollateralToolParams = z.infer<typeof removeCollateralToolParams>; export declare const removeCollateralTool: Tool<undefined, typeof removeCollateralToolParams>; export {};