historicalTrades.ts•1.8 kB
// src/tools/binance-spot/market-api/historicalTrades.ts
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
import { z } from "zod";
import { spotClient } from "../../../config/binanceClient.js";
export function registerBinanceHistoricalTrades(server: McpServer) {
server.tool(
"BinanceHistoricalTrades",
"Get older historical trades for a specific trading pair.",
{
symbol: z.string().describe("Symbol of the trading pair (e.g., BTCUSDT)"),
limit: z.number().optional().describe("Default 500; max 1000"),
fromId: z.number().optional().describe("Trade ID to fetch from")
},
async ({ symbol, limit, fromId }) => {
try {
const params: any = { symbol };
if (limit !== undefined) params.limit = limit;
if (fromId !== undefined) params.fromId = fromId;
const response = await spotClient.restAPI.historicalTrades(params);
const data = await response.data();
return {
content: [
{
type: "text",
text: `Retrieved historical trades for ${symbol}. Total trades: ${data.length}. Response: ${JSON.stringify(data)}`
}
]
};
} catch (error) {
const errorMessage = error instanceof Error ? error.message : String(error);
return {
content: [
{ type: "text", text: `Failed to retrieve historical trades: ${errorMessage}` }
],
isError: true
};
}
}
);
}