logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

bithumb-mcp

Fetch cryptocurrency information and manage transactions using the Bithumb API. Provides access to real-time data and the ability to execute trades through a standardized interface.

Author

bithumb-mcp logo

zereight

No License

Quick Info

GitHub GitHub Stars 0
NPM Weekly Downloads 0
Tools 1
Last Updated 2026-02-19

Tags

bithumbcryptocurrencymarketbithumb apicryptocurrency informationusing bithumb

MseeP.ai Security Assessment Badge

Bithumb MCP Server

smithery badge

Korean version available here

@zereight/bithumb-mcp

Bithumb MCP (Model Context Protocol) Server. Allows interaction with the Bithumb API to fetch cryptocurrency information and manage transactions.

Usage

Installing via Smithery

To install bithumb-mcp for Claude Desktop automatically via Smithery:

npx -y @smithery/cli install @zereight/bithumb-mcp --client claude

Using with Claude, Roo Code, Cline, etc.

Add the following configuration to your MCP settings file (e.g., mcp_settings.json):

{
  "mcpServers": {
    "bithumb-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@zereight/bithumb-mcp@latest"
      ],
      "env": {
        "BITHUMB_API_KEY": "YOUR_BITHUMB_API_KEY", // Required
        "BITHUMB_SECRET_KEY": "YOUR_BITHUMB_SECRET_KEY" // Required
      },
      "disabled": false
    }
  }
}

Note: Always use @latest tag to ensure you are using the most recent version with all bug fixes and improvements.

Using with Cursor (or direct CLI)

When using with Cursor or running directly, you can set up environment variables and run the server as follows:

env BITHUMB_API_KEY=YOUR_BITHUMB_API_KEY \
    BITHUMB_SECRET_KEY=YOUR_BITHUMB_SECRET_KEY \
    npx @zereight/bithumb-mcp
  • BITHUMB_API_KEY (Required): Your Bithumb API key.
  • BITHUMB_SECRET_KEY (Required): Your Bithumb secret key.

Tools 🛠️

  1. get_ticker
  2. Fetches cryptocurrency ticker information.
  3. Inputs:
    • coinCode (string, required): The cryptocurrency symbol (e.g., BTC, ETH).
  4. Returns: Ticker information (JSON string).

  5. get_orderbook

  6. Fetches order book information.
  7. Inputs:
    • coinCode (string, required): The cryptocurrency symbol (e.g., BTC, ETH).
  8. Returns: Order book details (JSON string).

  9. get_transaction_history

  10. Fetches recent transaction history.
  11. Inputs:
    • coinCode (string, required): The cryptocurrency symbol (e.g., BTC, ETH).
  12. Returns: Transaction history (JSON string).

  13. get_assets_status

  14. Fetches asset deposit/withdrawal status.
  15. Inputs:
    • orderCurrency (string, required): The cryptocurrency symbol (e.g., BTC, ETH).
  16. Returns: Deposit/withdrawal status (JSON string).

  17. get_candlestick

  18. Fetches candlestick data.
  19. Inputs:
    • orderCurrency (string, required): The cryptocurrency symbol (e.g., BTC, ETH).
    • paymentCurrency (string, required): Payment currency (e.g., KRW, BTC).
    • chartIntervals (string, required): Chart interval (e.g., '1m', '3m').
  20. Returns: Candlestick data (JSON string).

  21. post_account

  22. Fetches member account information and fees.
  23. Inputs:
    • coinCode (string, required): The cryptocurrency symbol (e.g., BTC, ETH).
  24. Returns: Account information (JSON string).

  25. get_balance

  26. Fetches account balance.
  27. Inputs:
    • coinCode (string, optional): The cryptocurrency symbol (e.g., BTC, ETH) or ALL.
  28. Returns: Balance information (JSON string).

  29. post_wallet_address

  30. Fetches member's coin deposit wallet address.
  31. Inputs:
    • coinCode (string, optional): The cryptocurrency symbol (e.g., BTC, ETH).
  32. Returns: Wallet address (JSON string).

  33. post_ticker_user

  34. Fetches member's recent virtual asset transaction information.
  35. Inputs:
    • orderCurrency (string, required): The cryptocurrency symbol (e.g., BTC, ETH).
  36. Returns: Transaction information (JSON string).

  37. post_orders

    • Fetches member's order details.
    • Inputs:
    • order_currency (string, required): Order currency symbol.
    • orderId (string, optional): Order ID.
    • type (string, optional): Order type (bid or ask).
    • count (number, optional): Number of orders to retrieve.
    • after (number, optional): Retrieve orders after this timestamp.
    • Returns: Order details (JSON string).
  38. post_order_detail

    • Fetches details of a specific member order.
    • Inputs:
    • orderId (string, required): Order ID.
    • orderCurrency (string, required): Cryptocurrency symbol (e.g., BTC, ETH).
    • Returns: Order details (JSON string).
  39. post_user_transactions

    • Fetches member's transaction completion history.
    • Inputs:
    • searchGb (number, required): Search type (0: all, 1: buy complete, etc.).
    • orderCurrency (string, required): Cryptocurrency symbol (e.g., BTC, ETH).
    • offset (number, optional): Start index for retrieval.
    • `count» (number, optional): Number of transactions to retrieve.
    • Returns: Transaction history (JSON string).
  40. post_place

    • Places a limit order (buy/sell).
    • Inputs:
    • `orderCurrency» (string, required): Cryptocurrency symbol (e.g., BTC, ETH).
    • `units» (number, required): Order quantity.
    • `price» (number, required): Order price.
    • `type» (string, required): Order type (bid or ask).
    • Returns: Order placement confirmation (JSON string).
  41. post_cancel

    • Cancels an order.
    • Inputs:
    • `type» (string, required): Order type (bid or ask).
    • `orderId» (string, required): Order ID to cancel.
    • `orderCurrency» (string, required): Cryptocurrency symbol (e.g., BTC, ETH).
    • Returns: Cancellation confirmation (JSON string).
  42. post_market_buy

    • Places a market buy order.
    • Inputs:
    • `units» (number, required): Quantity to buy.
    • `orderCurrency» (string, required): Cryptocurrency symbol (e.g., BTC, ETH).
    • Returns: Order placement confirmation (JSON string).
  43. post_market_sell

    • Places a market sell order.
    • Inputs:
    • `units» (number, required): Quantity to sell.
    • `orderCurrency» (string, required): Cryptocurrency symbol (e.g., BTC, ETH).
    • Returns: Order placement confirmation (JSON string).
  44. post_withdrawal_coin

    • Requests a coin withdrawal.
    • Inputs:
    • `units» (number, required): Withdrawal quantity.
    • `address» (string, required): Withdrawal address.
    • `currency» (string, optional): Cryptocurrency symbol (e.g., BTC, ETH).
    • `destination» (string, optional): Destination tag/memo (if required).
    • Returns: Withdrawal request confirmation (JSON string).
  45. post_withdrawal_krw

    • Requests a KRW withdrawal (Deprecated by Bithumb).
    • Inputs:
    • `bank» (string, required): Bank code and name.
    • `account» (string, required): Account number.
    • `price» (number, required): Withdrawal amount.
    • Returns: Withdrawal request confirmation (JSON string).

Environment Variables

Before running the server, you must set the following environment variables:

BITHUMB_API_KEY=YOUR_BITHUMB_API_KEY
BITHUMB_SECRET_KEY=YOUR_BITHUMB_SECRET_KEY

License

MIT License

See Also

`