Skip to main content
Glama
bit2me-devs

Bit2Me MCP Server

by bit2me-devs

pro_create_order

Create limit, market, or stop-limit orders in PRO Trading. Specify trading pair, side, amount, and optional price/stop price. Returns order ID.

Instructions

Create Limit/Market/Stop order in PRO Trading. Returns order ID. For Limit orders, 'price' is required. For Stop-Limit orders, both 'price' and 'stop_price' are required. Market orders execute immediately at current price. Use pro_get_open_orders to check order status. Order status ENUM: open (order is active and waiting to be filled), filled (order was completely executed), cancelled (order was cancelled or expired). [PRIVATE]

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pairYesTrading pair in BASE-QUOTE format (e.g., BTC-USD, ETH-EUR)
sideYesOrder direction: buy (purchase base currency) or sell (dispose base currency)
typeYesOrder type: limit (at specified price), market (immediate at best price), stop-limit (triggers at stop price)
amountYesOrder amount in base currency (as string for decimal precision)
priceNoLimit price in quote currency (required for limit/stop-limit orders)
stop_priceNoTrigger price for stop-limit orders (order activates when market reaches this price)
jwtNoOptional session token for authentication. API keys are recommended for most use cases.
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries full disclosure burden. It mentions return value (order ID), order status ENUM, and the [PRIVATE] tag implying authorization needed. However, it does not disclose side effects on balances, authentication requirements beyond optional jwt, or any limitations like rate limits. This is adequate but not comprehensive.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is three concise sentences plus a status ENUM list. It front-loads the core purpose and then provides type-specific details. It is efficient with word count, though the status ENUM could be integrated more smoothly.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no output schema, the description explains return value (order ID) and order status ENUM. It covers all three order types and their requirements. It references a sibling tool for status checking. It is reasonably complete for a creation tool, though it could mention cancellation methods or common errors.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so each parameter is described. The description adds crucial cross-parameter constraints (e.g., price required for limit, stop_price required for stop-limit) that are not in the schema's required array. This provides decision logic for the agent beyond the schema definitions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description explicitly states 'Create Limit/Market/Stop order in PRO Trading' with a clear verb-resource combination. It lists the order types and notes it returns order ID, distinguishing from broker-related siblings.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides specific conditions for when parameters are required (price for limit, both price and stop_price for stop-limit) and notes that market orders execute at current price. It also suggests using pro_get_open_orders for status checking. However, it lacks explicit guidance on when not to use this tool versus broker or other order tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

Latest Blog Posts

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/bit2me-devs/bit2me-mcp'

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