Upbit MCP Server (TypeScript)
Fast MCP server for interacting with Upbit. Provides public market data tools and optional private trading tools.
Requirements
- Node.js 18+
- pnpm 8+
Install
Environment
Copy and edit .env
:
.env.example
:
Private tools require UPBIT_ACCESS_KEY
, UPBIT_SECRET_KEY
, and UPBIT_ENABLE_TRADING=true
.
Where to get Upbit API keys
Before you begin, you need to get your Upbit API keys:
- Create an account on Upbit if you don't already have one
- Go to the Upbit Developer Center
- Create a new API key
- Make sure to set appropriate permissions (read, trade, withdraw as needed)
- Store your API keys(
UPBIT_ACCESS_KEY
,UPBIT_SECRET_KEY
) in the.env
file (see Installation section) setUPBIT_ENABLE_TRADING=true
to enable private tools.
Build & Run
For easier testing use this (in project root):
If installed globally or via npx, you can also run the bin:
Runs over stdio for MCP clients.
Tools
Public:
GET_TICKER
— latest ticker for a market. Params:{ "market": "KRW-BTC" }
GET_ORDERBOOK
— orderbook snapshot. Params:{ "market": "KRW-BTC" }
GET_TRADES
— recent trades. Params:{ "market": "KRW-BTC" }
Private (requires env and enable flag):
GET_ACCOUNTS
GET_ORDERS
—{ market?, state?, page?, limit? }
GET_ORDER
—{ uuid? , identifier? }
CREATE_ORDER
—{ market, side, ord_type, volume?, price? }
CANCEL_ORDER
—{ uuid }
All tool outputs are JSON strings for easy display.
License
MIT
This server cannot be installed
remote-capable server
The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.
Enables interaction with the Upbit cryptocurrency exchange through public market data tools and optional private trading tools. Supports getting ticker data, orderbooks, trades, account information, and executing trading operations through natural language.
Related MCP Servers
- AsecurityAlicenseAqualityProvides real-time and historical cryptocurrency market data through integration with major exchanges. This server enables LLMs like Claude to fetch current prices, analyze market trends, and access detailed trading information.Last updated -753PythonMIT License
- AsecurityAlicenseAqualityInteract with Upbit cryptocurrency exchange services to retrieve market data, manage accounts, and execute trades. Simplify your trading experience with tools for order management, deposits, withdrawals, and technical analysis.Last updated -1011PythonMIT License
- AsecurityFlicenseAqualityA backend service that enables interaction with the Binance exchange API, allowing users to view their portfolio, convert tokens, and execute trades with minimal market impact.Last updated -1438TypeScript
- AsecurityFlicenseAqualityEnables programmatic access to Bitpanda cryptocurrency exchange features including trades, wallets, and transactions via the Model Context Protocol.Last updated -9TypeScript