Skip to main content
Glama

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
NameRequiredDescriptionDefault
orderCurrencyYesCryptocurrency symbol (e.g. BTC, ETH)

Implementation Reference

  • 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;

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