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
| Name | Required | Description | Default |
|---|---|---|---|
| coinCode | No | Cryptocurrency symbol (e.g. BTC, ETH) | BTC |
Implementation Reference
- src/bitThumb/index.ts:166-176 (handler)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' } } } },
- src/index.ts:325-327 (handler)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; }