Skip to main content
Glama

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
NameRequiredDescriptionDefault
orderCurrencyYesCryptocurrency symbol (e.g. BTC, ETH)

Implementation Reference

  • 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;
  • 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[]; }

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