Skip to main content
Glama

Upbit MCP Server

create_order

Submit buy or sell orders on the Upbit cryptocurrency exchange. Specify market, order type (limit, market), and required parameters like volume or price to execute trades.

Instructions

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

Input Schema

NameRequiredDescriptionDefault
marketYes
ord_typeYes
priceNo
sideYes
volumeNo

Input Schema (JSON Schema)

{ "properties": { "market": { "title": "Market", "type": "string" }, "ord_type": { "enum": [ "limit", "price", "market" ], "title": "Ord Type", "type": "string" }, "price": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Price" }, "side": { "enum": [ "bid", "ask" ], "title": "Side", "type": "string" }, "volume": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Volume" } }, "required": [ "market", "side", "ord_type" ], "title": "create_orderArguments", "type": "object" }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/solangii/upbit-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server