We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/TermiX-official/binance-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
// src/tools/binance-vip-loan/trade-api/index.ts
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
import { registerBinanceVipLoanRenew } from "./vipLoanRenew.js";
import { registerBinanceVipLoanRepay } from "./vipLoanRepay.js";
import { registerBinanceVipLoanBorrow } from "./vipLoanBorrow.js";
export function registerBinanceVipLoanTradeApiTools(server: McpServer) {
registerBinanceVipLoanRenew(server);
registerBinanceVipLoanRepay(server);
registerBinanceVipLoanBorrow(server);
}