get_assets_status
Check deposit and withdrawal status for cryptocurrencies on Bithumb exchange to monitor transaction progress and verify fund movements.
Instructions
Get asset deposit/withdrawal status (Public)
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| orderCurrency | Yes | Cryptocurrency symbol (e.g. BTC, ETH) |
Implementation Reference
- src/bitThumb/index.ts:87-98 (handler)Core handler function that fetches asset deposit and withdrawal status from Bithumb public API endpoint 'assetsstatus'./** * Provides information about the status of an asset's deposits and withdrawals in the bithumb * https://apidocs.bithumb.com/reference/%EC%9E%85%EC%B6%9C%EA%B8%88-%EC%A7%80%EC%9B%90-%ED%98%84%ED%99%A9 */ public async getAssetsStatus( orderCurrency: string, ): Promise<IGetAssetsStatus> { const res = <IGetAssetsStatus>( await this.requestPublic('assetsstatus', orderCurrency) ); return res; }
- src/index.ts:306-308 (registration)Tool dispatch/registration in the MCP server switch statement that calls the BitThumb API handler.case 'get_assets_status': result = await this.bithumbApi.getAssetsStatus(args.orderCurrency as string); break;
- src/index.ts:97-106 (schema)Tool registration definition including input schema for MCP ListTools response.name: 'get_assets_status', description: 'Get asset deposit/withdrawal status (Public)', inputSchema: { type: 'object', properties: { orderCurrency: { type: 'string', description: 'Cryptocurrency symbol (e.g. BTC, ETH)' } }, required: ['orderCurrency'] } },
- TypeScript interface defining the response structure for getAssetsStatus (output schema).import { IBithumbResponse } from './bithumb-response.interface.js'; interface IAssetsStatus { deposit_status: number; withdrawl_status: number; } export interface IGetAssetsStatus extends IBithumbResponse { data: IAssetsStatus[]; }