Skip to main content
Glama
solangii

Upbit MCP Server

by solangii

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault

No arguments

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Server capabilities have not been inspected yet.

Tools

Functions exposed to the LLM to take actions

NameDescription
get_tickerC

Get the latest ticker data from Upbit

get_orderbookC

Get orderbook snapshot for a given symbol

get_tradesC

Get recent trade ticks for a symbol

get_accountsB
업비트 계정의 잔고 정보를 조회합니다.

Returns:
    list[dict]: 보유 중인 자산 목록
create_orderA
업비트에 주문을 생성합니다.

Args:
    market (str): 마켓 코드 (예: KRW-BTC)
    side (str): 주문 종류 - bid(매수) 또는 ask(매도)
    ord_type (str): 주문 타입 - limit(지정가), price(시장가 매수), market(시장가 매도)
    volume (str, optional): 주문량 (지정가, 시장가 매도 필수)
    price (str, optional): 주문 가격 (지정가 필수, 시장가 매수 필수)
    
Returns:
    dict: 주문 결과
get_ordersA
업비트에서 주문 내역을 조회합니다.

Args:
    market (str, optional): 마켓 코드 (예: KRW-BTC)
    state (str): 주문 상태 - wait(대기), done(완료), cancel(취소)
    page (int): 페이지 번호
    limit (int): 페이지당 주문 개수 (최대 100)
    
Returns:
    list[dict]: 주문 내역
get_orderC
업비트에서 특정 주문의 정보를 조회합니다.

Args:
    uuid (str, optional): 주문 UUID
    identifier (str, optional): 조회용 사용자 지정 값
    
Returns:
    dict: 주문 정보
cancel_orderC
업비트에서 주문을 취소합니다.

Args:
    uuid (str): 취소할 주문의 UUID
    
Returns:
    dict: 취소 결과
get_market_summaryB
주요 암호화폐 시장의 요약 정보를 제공합니다.

Returns:
    dict: 주요 암호화폐 시장 요약 정보
get_deposits_withdrawalsB
업비트 계정의 입출금 내역을 조회합니다.

Args:
    currency (str, optional): 통화 코드 (예: BTC)
    txid (str, optional): 거래 ID
    transaction_type (str): 거래 유형 - deposit(입금) 또는 withdraw(출금)
    page (int): 페이지 번호
    limit (int): 페이지당 결과 개수 (최대 100)
    
Returns:
    list[dict]: 입출금 내역

Prompts

Interactive templates invoked by user choice

NameDescription
explain_tickerCreate a prompt explaining ticker data
analyze_portfolio 사용자의 포트폴리오를 분석하는 프롬프트를 생성합니다.
order_help 주문 생성에 대한 도움말 프롬프트를 생성합니다.
trading_strategy 트레이딩 전략 수립을 위한 프롬프트를 생성합니다.

Resources

Contextual data attached and managed by the client

NameDescription
market://list

TDQS

B3.4/5.0

Scored across 10 tools

Disambiguation5/5

Each tool has a clearly distinct purpose targeting specific resources and actions in the Upbit cryptocurrency exchange domain. For example, create_order, cancel_order, get_order, and get_orders handle different aspects of order management without overlap, while get_accounts, get_deposits_withdrawals, get_market_summary, get_orderbook, get_ticker, and get_trades each focus on unique data retrieval functions. No tools appear to do the same thing, making selection unambiguous for an agent.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern using snake_case, such as get_accounts, create_order, and cancel_order. This predictable naming convention enhances readability and usability, with no deviations or mixed styles observed across the toolset. The consistency supports easy identification and reduces cognitive load for agents.

Tool Count5/5

With 10 tools, the server is well-scoped for its purpose of interacting with the Upbit cryptocurrency exchange. Each tool earns its place by covering essential operations like account management, order handling, and market data retrieval. This count aligns with typical server sizes (3-15 tools) and avoids being too thin or heavy, providing comprehensive functionality without unnecessary complexity.

Completeness4/5

The tool surface offers near-complete coverage for the cryptocurrency exchange domain, including CRUD operations for orders (create, get, cancel, list), account and transaction management, and market data access. Minor gaps exist, such as the lack of tools for modifying orders or handling advanced trading features like stop-loss orders, but agents can work around these with the available tools. Overall, the set supports core workflows effectively.

Maintenance

ActivityInactive
ResponsivenessNo issues