Skip to main content
Glama
zereight

Bithumb MCP Server

get_assets_status

Check deposit and withdrawal status for cryptocurrencies on Bithumb exchange to monitor transaction progress and confirm fund movements.

Instructions

Get asset deposit/withdrawal status (Public)

Input Schema

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

Implementation Reference

  • The core handler function in the ApiBithumb class that executes the logic for the get_assets_status tool by making a public API request to Bithumb's assetsstatus endpoint.
    public async getAssetsStatus(
      orderCurrency: string,
    ): Promise<IGetAssetsStatus> {
      const res = <IGetAssetsStatus>(
        await this.requestPublic('assetsstatus', orderCurrency)
      );
      return res;
    }
  • src/index.ts:96-106 (registration)
    Registers the get_assets_status tool in the MCP server's tools list, including name, description, and input schema.
    {
      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 the getAssetsStatus API call.
    interface IAssetsStatus {
      deposit_status: number;
      withdrawl_status: number;
    }
    
    export interface IGetAssetsStatus extends IBithumbResponse {
      data: IAssetsStatus[];
    }
  • Dispatcher case in the MCP CallToolRequestSchema handler that invokes the getAssetsStatus method with tool arguments.
    case 'get_assets_status':
      result = await this.bithumbApi.getAssetsStatus(args.orderCurrency as string);
      break;

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