{
"mcpServers": {
"upbit-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP(Model Context Protocol) server for Upbit
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
MIT. View license →
Is it maintained?
Last commit 349 days ago. 18 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Dynamic problem-solving through sequential thought chains
A Model Context Protocol server for searching and analyzing arXiv papers
An open-source AI agent that brings the power of Gemini directly into your terminal.
The official Python SDK for Model Context Protocol servers and clients
MCP Security Weekly
Get CVE alerts and security updates for Upbit Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A server implementation for Upbit Cryptocurrency Exchange OpenAPI using the Model Context Protocol (MCP). This project provides tools to interact with Upbit exchange services, such as retrieving market data (quotes, orderbooks, trade history, chart data), account information, creating and canceling orders, managing deposits/withdrawals, and performing technical analysis.
get_ticker)get_orderbook)get_trades)get_market_summary)get_accounts)get_orders)get_order)get_deposits_withdrawals)create_order)create_order)cancel_order)아래는 실제 채팅 예시 이미지입니다.
Before you begin, you need to get your Upbit API keys:
UPBIT_ACCESS_KEY, UPBIT_SECRET_KEY) in the .env file (see Installation section)Clone the repository:
git clone https://github.com/solangii/upbit-mcp-server.git
cd upbit-mcp-server
Install dependencies:
cd upbit-mcp-server
uv sync
If you don't have uv installed yet, you can install it as follows:
Using uv provides faster installation and more reliable dependency resolution.
# Install uv
curl -Ls https://astral.sh/uv/install.sh | sh
# Add uv to your PATH
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.zshrc
source ~/.zshrc # or bashrc, depending on your shell
Set up environment variables:
Create a .env file in the project root and add your Upbit API keys:
UPBIT_ACCESS_KEY=your_access_key_here
UPBIT_SECRET_KEY=your_secret_key_here
You can add the MCP server directly to Claude's configuration file:
Install Claude Desktop
Add the following to your Claude Desktop configuration:
%APPDATA%\Claude\claude_desktop_config.jsonAdd the following configuration (adjust paths as needed):
{
"mcpServers": {
"upbit-mcp-server": {
"command": "/full/path/to/upbit-mcp-server/.venv/bin/python",
"args": [
"/full/path/to/upbit-mcp-server/main.py"
]
}
}
}
Restart Claude to load the new configuration.
fastmcp install main.py --name "Upbit API"
uv run python main.py
fastmcp dev main.py