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
| Name | Required | Description | Default |
|---|---|---|---|
| coinCode | Yes | Cryptocurrency symbol (e.g. BTC, ETH) |
Implementation Reference
- src/bitThumb/index.ts:77-85 (handler)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[]; }