Skip to main content
Glama
bybit-exchange

Bybit MCP Server

Official

getPredictionOrderList

Read-only

Check your Bybit prediction market order history to see fill status, executed price, and fees. Filter by status, token, event, or side to track orders within 90 days.

Instructions

Query the authenticated user's prediction market order history. Returns order details including fill status, executed price, and fees.

Use this after placing a buy or sell order to check the final execution status. FOK orders will show as FILLED or CANCELLED.

Supports filtering by:

  • status: order status (PENDING/FILLED/PARTIALLY_FILLED/CANCELLED/REJECTED)

  • tokenId: specific outcome token

  • eventId: specific event

  • side: BUY (1) or SELL (2)

  • days: look back N days (max 90)

Agent hint: Use this to check order fill status after placing buy/sell orders. Filter by status=2 (FILLED) or status=4 (CANCELLED) to see order results. FOK orders are either fully FILLED or CANCELLED — no partial fills. Use days to limit history range (max 90 days).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
daysNo
sideNo
limitNo
statusNo
eventIdNo
tokenIdNo
pageIndexNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv2.1.15

TDQS

A4.1/5.0
Behavior4/5

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

Annotations already provide readOnlyHint and openWorldHint; the description adds meaningful behavioral context: return details, FOK orders showing as FILLED or CANCELLED with no partial fills, and a 90-day lookback limit. It does not mention pagination or rate limits, but for a read-only query this is sufficient.

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

Conciseness3/5

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

The description is well-structured with a summary, bulleted filters, and an agent hint, but it is redundant: the 'use after placing an order' guidance, FOK statement, and days-max warning each appear twice. Some sentences could be removed without losing information.

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

Completeness3/5

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

The description covers the core purpose, filters, and key returned fields, but does not explain limit/pageIndex pagination semantics (e.g., base index) and lacks an output schema. For a 7-parameter tool with no output schema, this is a moderate gap.

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?

With 0% schema description coverage, the description compensates by explaining status, tokenId, eventId, side, and days, including numeric mappings for status (2=FILLED, 4=CANCELLED) and side (1=BUY, 2=SELL). It omits limit and pageIndex, but these are conventional pagination parameters an agent can reasonably infer.

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?

Clearly states the tool queries the authenticated user's prediction market order history, with a specific verb, resource, and scope. It also lists the returned data (fill status, executed price, fees), which helps distinguish it from sibling prediction-market tools like getPredictionPositionHistory or getPredictionOrderBook.

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?

Explicitly advises using this tool after placing a buy/sell order to check final execution status, and provides FOK-specific expectations. It does not name alternative tools or state when not to use it, but the context is clear and scoped to prediction market order history.

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

Deploy Server

Other Tools