Skip to main content
Glama
zereight

Bithumb MCP Server

get_transaction_history

Retrieve recent cryptocurrency transaction records from the Bithumb exchange to track trading activity and analyze market movements for informed decision-making.

Instructions

Get recent transaction history (Public)

Input Schema

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

Implementation Reference

  • Core handler function implementing the get_transaction_history tool by calling Bithumb's public transaction_history endpoint.
    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-94 (registration)
    Tool registration in the MCP server, defining 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']
      }
  • MCP CallToolRequestHandler dispatch case that invokes the specific tool handler.
    case 'get_transaction_history':
      result = await this.bithumbApi.getTransactionHistory(args.coinCode as string);
  • TypeScript interface defining the output structure for getTransactionHistory response.
    export interface IGetTransactionHistory extends IBithumbResponse {
      data: ITransactionHistory[];
    }
  • JSON schema defining the input parameters for the tool (coinCode required).
    inputSchema: {
      type: 'object',
      properties: {
        coinCode: { type: 'string', description: 'Cryptocurrency symbol (e.g. BTC, ETH)' }
      },
      required: ['coinCode']

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