Skip to main content
Glama

post_account

Retrieve account details and fee information for specific cryptocurrencies on the Bithumb exchange. This tool provides access to private account data required for trading decisions.

Instructions

Get member account information and fees (Private)

Input Schema

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

Implementation Reference

  • Core handler function implementing the post_account tool logic by making a POST request to Bithumb's /info/account endpoint.
    public async postAccount(coinCode: string): Promise<IPostAccount> { const params = { order_currency: coinCode, }; const res = <IPostAccount>await this.requestInfo('account', params); return res; }
  • MCP server tool call handler for 'post_account' that delegates to the BitThumb API client.
    case 'post_account': result = await this.bithumbApi.postAccount(args.coinCode as string); break;
  • src/index.ts:125-135 (registration)
    Tool registration in the MCP server's tools list, including input schema.
    { name: 'post_account', description: 'Get member account information and fees (Private)', inputSchema: { type: 'object', properties: { coinCode: { type: 'string', description: 'Cryptocurrency symbol (e.g. BTC, ETH)' } }, required: ['coinCode'] } },
  • TypeScript interface defining the expected response structure for the post_account tool.
    export interface IPostAccount extends IBithumbResponse { data: IAccount; }

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