npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@bithumb-official/bithumb-mcp

v0.8.5

Published

Bithumb MCP Server - Model Context Protocol server for Bithumb exchange

Readme

@bithumb-official/bithumb-mcp

MCP (Model Context Protocol) server for the Bithumb exchange. Connect Claude, Cursor, VS Code, Windsurf, Codex, and other MCP-compatible clients to Bithumb — query market data, manage orders, and handle deposits and withdrawals using natural language.

Runs locally via npx. API keys and request data go directly to the Bithumb API without passing through any external server.

Quick Start

Requires Node.js 18 or later. No global install needed — the server runs automatically via npx.

To use features that require authentication, set environment variables first — see Authentication.

Claude Code (.mcp.json in project root, or ~/.claude.json for global):

{
  "mcpServers": {
    "bithumb": {
      "command": "npx",
      "args": ["-y", "@bithumb-official/bithumb-mcp", "--modules", "all"],
      "env": {
        "BITHUMB_ACCESS_KEY": "${BITHUMB_ACCESS_KEY}",
        "BITHUMB_SECRET_KEY": "${BITHUMB_SECRET_KEY}"
      }
    }
  }
}

Save and restart the client. For more details, see the MCP guide.

Authentication

Market data tools work without credentials. Account, trade, deposit, and withdraw tools require a Bithumb API key.

Set up an API Key with the required permissions on the Bithumb API management page, then set environment variables:

export BITHUMB_ACCESS_KEY="your_access_key"
export BITHUMB_SECRET_KEY="your_secret_key"

Add to ~/.zshrc or ~/.bashrc for permanent use. The MCP server reads environment variables only — it does not use ~/.bithumb/config.toml profiles.

Tools

| Module | Auth required | |---|:---:| | Market — markets, ticker, orderbook, candles, trades, deposit/withdrawal fees, notices, warnings | No | | Account — assets, order chance, wallet status, API keys | Yes | | Trade — place, cancel, get, list, batch place/cancel | Yes | | TWAP — place, cancel, get orders | Yes | | Deposit — get, list, list KRW, address, addresses, generate address, KRW deposit | Yes | | Withdraw — get, list, list KRW, chance, addresses, coin, cancel, KRW | Yes | | System — diagnose, audit log | No |

Server Options

Options go in the args array of your client config:

"args": ["-y", "@bithumb-official/bithumb-mcp", "--modules", "market,account", "--read-only"]

| Option | Description | Default | |---|---|---| | --modules <list> | Comma-separated modules to enable, or all | all | | --read-only | Disable order and withdrawal tools | false | | --no-log | Disable audit logging | logging enabled | | --log-level <level> | error, warn, info, debug | info | | --verbose | Print detailed request logs to stderr | false | | --version | Print version | | | --help | Print help | |

Documentation

For more details, see the MCP guide.

Related

License

MIT