Skip to main content
Glama
zereight

Bithumb MCP Server

post_withdrawal_coin

Withdraw cryptocurrency from your Bithumb exchange account by specifying the amount, destination address, and currency type.

Instructions

Request a coin withdrawal (Private)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
unitsYesWithdrawal quantity
addressYesWithdrawal address
currencyNoCryptocurrency symbol (e.g. BTC, ETH)BTC
destinationNoDestination tag/memo (optional, if required)

Implementation Reference

  • Core handler function implementing the post_withdrawal_coin tool logic by preparing parameters and calling the Bithumb trade API for coin withdrawal.
    public async postWithdrawalCoin(
      units: number,
      address: string,
      currency = 'BTC',
      desination?: string,
    ): Promise<IPostWithdrawalCoin> {
      const param = {
        units,
        address,
        currency,
        desination,
      };
      const res = <IPostWithdrawalCoin>(
        await this.requestTrade('btc_withdrawal', param)
      );
      return res;
    }
  • src/index.ts:260-273 (registration)
    Tool registration including name, description, and input schema definition for post_withdrawal_coin.
    {
      name: 'post_withdrawal_coin',
      description: 'Request a coin withdrawal (Private)',
      inputSchema: {
        type: 'object',
        properties: {
          units: { type: 'number', description: 'Withdrawal quantity' },
          address: { type: 'string', description: 'Withdrawal address' },
          currency: { type: 'string', description: 'Cryptocurrency symbol (e.g. BTC, ETH)', default: 'BTC' },
          destination: { type: 'string', description: 'Destination tag/memo (optional, if required)' }
        },
        required: ['units', 'address']
      }
    },
  • MCP tool dispatcher case that invokes the postWithdrawalCoin method on the Bithumb API instance.
    case 'post_withdrawal_coin':
      result = await this.bithumbApi.postWithdrawalCoin(
        args.units as number,
        args.address as string,
        args.currency as string | undefined,
        args.destination as string | undefined
      );
      break;
  • TypeScript interface defining the response shape for post_withdrawal_coin, extending the base Bithumb response.
    export interface IPostWithdrawalCoin extends IBithumbResponse {}

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