Skip to main content
Glama
bybit-exchange

Bybit MCP Server

Official

getPayTokenList

Read-only

Resolve payment token symbols like USDT into Bybit CEX token codes needed for trade quotes. Call before getTradeQuote to map user input to correct token code, with limits and supported chains.

Instructions

Query available payment tokens for trading. Returns token symbol, CEX_<id> token code, maximum trading limit, and supported blockchain list.

AI agent should call this before executing a trade to resolve user input (e.g. "USDT") into the proper CEX_<id> token code required by getTradeQuote.

Do NOT use this endpoint to get on-chain tradable tokens — use getBizTokenList instead. Do NOT use this to get token market data or prices — use getBizTokenPriceList.

Agent hint: Use this endpoint to get available payment tokens (USDT, USDC, etc.) and their CEX token codes before placing a trade. Maps user input like "USDT" to "CEX_1". Required before calling getTradeQuote. Do NOT use this to get on-chain tradable tokens — use getBizTokenList. Do NOT use this for token prices — use getBizTokenPriceList.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
chainCodeYes
tokenAddressYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv2.1.11

TDQS

A3.9/5.0
Behavior4/5

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

Annotations already signal readOnlyHint and openWorldHint. The description adds behavioral context by explaining the mapping behavior ('Maps user input like "USDT" to "CEX_1"') and the type of data returned. This goes beyond the annotations, though it doesn't mention authentication, rate limits, or pagination—acceptable given the read-only quiz nature.

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 first paragraph is clear and front-loaded, but the description is repetitive: the 'Agent hint' section largely duplicates the earlier sentences (usage, CEX_1 mapping, and the same two 'Do NOT' statements). This redundancy adds length without new information, making it less concise than it could be.

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

Completeness2/5

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

While the use case and alternatives are well explained, the lack of parameter guidance prevents the description from being complete enough to invoke the tool correctly. Without knowing what chainCode/tokenAddress represent or how to fill them, the agent is left guessing despite the otherwise strong purpose clarity.

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

Parameters2/5

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

Schema description coverage is 0% and the description does not explain either parameter (chainCode, tokenAddress). It only implies a blockchain context via 'supported blockchain list,' but without clarifying what values chainCode/tokenAddress expect or how they relate to the output, the agent cannot reliably construct a valid request.

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 clearly states a specific verb ('Query') and resource ('available payment tokens for trading'), and enumerates the returned data (token symbol, CEX_<id> token code, max trading limit, supported blockchains). It also explicitly distinguishes itself from getBizTokenList and getBizTokenPriceList, so an agent can quickly identify what this tool is for.

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

Usage Guidelines5/5

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

The description provides explicit when-to-use instructions ('call this before executing a trade', 'Required before calling getTradeQuote'), and explicit when-not-to-use with named alternatives ('Do NOT use this to get on-chain tradable tokens — use getBizTokenList', 'Do NOT use this for token prices — use getBizTokenPriceList'). This gives the agent complete routing guidance.

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