UNPKG

@iqai/mcp-bamm

Version:

MCP server for bamm (borrow automated market maker)

16 lines (15 loc) 460 B
import type { FastMCPSessionAuth, Tool } from "fastmcp"; import { z } from "zod"; declare const lendToolParams: z.ZodObject<{ bammAddress: z.ZodString; amount: z.ZodString; }, "strip", z.ZodTypeAny, { amount: string; bammAddress: string; }, { amount: string; bammAddress: string; }>; export type LendToolParams = z.infer<typeof lendToolParams>; export declare const lendTool: Tool<FastMCPSessionAuth, typeof lendToolParams>; export {};