We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/nirholas/bnbchain-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
/**
* @author Nich
* @website x.com/nichxbt
* @github github.com/nirholas
* @license MIT
*/
// src/tools/binance-simple-earn/index.ts
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
import { registerBinanceSimpleEarnApiTools } from "./earn-api/index.js";
import { registerBinanceSimpleEarnAccountApiTools } from "./account-api/index.js";
export function registerBinanceSimpleEarnTools(server: McpServer) {
// Registers core API tools like subscribing to flexible products
registerBinanceSimpleEarnApiTools(server);
// Registers account-related tools like viewing product lists and positions
registerBinanceSimpleEarnAccountApiTools(server);
}