Skip to main content
Glama

get_transaction_history

Retrieve recent cryptocurrency transaction data from the Bithumb exchange for analysis and tracking.

Instructions

Get recent transaction history (Public)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
coinCodeYesCryptocurrency symbol (e.g. BTC, ETH)

Implementation Reference

  • The core handler function that executes the tool logic by calling the Bithumb public API endpoint for recent transaction history.
    public async getTransactionHistory( coinCode: string, ): Promise<IGetTransactionHistory> { const param = `${coinCode}_${this.paymentCurrency}`; const res = <IGetTransactionHistory>( await this.requestPublic('transaction_history', param) ); return res; }
  • src/index.ts:85-95 (registration)
    Registers the tool with the MCP server, including name, description, and input schema.
    { name: 'get_transaction_history', description: 'Get recent transaction history (Public)', inputSchema: { type: 'object', properties: { coinCode: { type: 'string', description: 'Cryptocurrency symbol (e.g. BTC, ETH)' } }, required: ['coinCode'] } },
  • src/index.ts:303-305 (registration)
    Dispatches incoming tool calls for 'get_transaction_history' to the underlying API handler.
    case 'get_transaction_history': result = await this.bithumbApi.getTransactionHistory(args.coinCode as string); break;
  • TypeScript interface defining the expected response structure for the transaction history.
    export interface IGetTransactionHistory extends IBithumbResponse { data: ITransactionHistory[]; }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/zereight/bithumb-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server