Skip to main content
Glama
zereight

Bithumb MCP Server

post_wallet_address

Retrieve cryptocurrency deposit wallet addresses for your Bithumb exchange account to receive funds securely.

Instructions

Get member's coin deposit wallet address (Private)

Input Schema

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

Implementation Reference

  • The core handler function that executes the logic for posting to retrieve the wallet address from Bithumb API using requestInfo.
    public async postWalletAddress( coinCode?: string, ): Promise<IPostWalletAddress> { const params = { currency: coinCode || 'BTC', }; const res = <IPostWalletAddress>( await this.requestInfo('wallet_address', params) ); return res; }
  • src/index.ts:147-155 (registration)
    Registers the post_wallet_address tool in the MCP tools list with description and input schema.
    name: 'post_wallet_address', description: 'Get member\'s coin deposit wallet address (Private)', inputSchema: { type: 'object', properties: { coinCode: { type: 'string', description: 'Cryptocurrency symbol (e.g. BTC, ETH)', default: 'BTC' } } } },
  • Handles the tool call by dispatching to the bithumbApi.postWalletAddress implementation.
    case 'post_wallet_address': result = await this.bithumbApi.postWalletAddress(args.coinCode as string); break;
  • Defines the TypeScript interface for the response of postWalletAddress.
    export interface IPostWalletAddress extends IBithumbResponse { data: IWallerAddress; }

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