post_ticker_user
Retrieve a user's recent cryptocurrency transaction history from Bithumb exchange for a specified asset, providing private account activity data.
Instructions
Get member's recent virtual asset transaction information (Private)
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| orderCurrency | Yes | Cryptocurrency symbol (e.g. BTC, ETH) |
Implementation Reference
- src/bitThumb/index.ts:182-188 (handler)Core implementation of the post_ticker_user tool. Makes a private POST request to Bithumb's /info/ticker endpoint using the order_currency parameter to retrieve user's ticker information.public async postTickerUser(orderCurrency: string): Promise<IPostTickerUser> { const params = { order_currency: orderCurrency, }; const res = <IPostTickerUser>await this.requestInfo('ticker', params); return res; }
- src/index.ts:156-166 (registration)Registers the post_ticker_user tool with the MCP server, providing name, description, and input schema.{ name: 'post_ticker_user', description: 'Get member\'s recent virtual asset transaction information (Private)', inputSchema: { type: 'object', properties: { orderCurrency: { type: 'string', description: 'Cryptocurrency symbol (e.g. BTC, ETH)' } }, required: ['orderCurrency'] } },
- TypeScript interface defining the expected response structure for the post_ticker_user tool (output schema).export interface IPostTickerUser extends IBithumbResponse { data: ITickerUser; }
- src/index.ts:328-330 (registration)Dispatches the tool call to the underlying Bithumb API handler in the MCP call tool request handler.case 'post_ticker_user': result = await this.bithumbApi.postTickerUser(args.orderCurrency as string); break;