Skip to main content
Glama
Quantweb3-com

NexusTrader MCP

Official

get_balance

Get current account balance for a specified exchange and account type. Provide exchange name and account type to retrieve available funds.

Instructions

获取指定交易所/账户类型的余额。

Args: exchange: 交易所名称,如 binance / bybit / okx account_type: 账户类型,如 USD_M_FUTURE_TESTNET / LINEAR

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
exchangeYes
account_typeYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.2

TDQS

B3.3/5.0
Behavior2/5

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

With no annotations, the description carries the full burden of behavioral disclosure. It conveys that this is a read-only balance lookup and identifies the scoping parameters, but it does not mention authentication needs, error behavior, or account-type constraints. This is a minor gap for a simple read tool, but still below the bar for strong transparency.

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

Conciseness5/5

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

The description is compact and well-structured: a clear one-sentence purpose followed by concise parameter explanations. Every line is useful and there is no redundant text.

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?

For a low-complexity, two-parameter balance query with an output schema, the description adequately covers purpose and parameters. The notable gap is the lack of routing guidance relative to sibling tools, but this is not severe given the simplicity of the operation.

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?

The schema provides no descriptions or enums, so the description must compensate. It does so by explaining both parameters and giving concrete examples like 'binance / bybit / okx' and 'USD_M_FUTURE_TESTNET / LINEAR', which adds real meaning beyond the bare schema fields.

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

Purpose4/5

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

The description uses a clear verb '获取' (get) and a specific resource: the balance for a specified exchange/account type. It implicitly contrasts with the sibling get_all_balances by emphasizing '指定' (specified), but it does not explicitly name that sibling or draw the distinction.

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

Usage Guidelines2/5

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

The description provides no explicit guidance on when to use this tool versus get_all_balances or get_position. The intended use is implied by the parameter names and the word '指定', but there is no when-to-use/when-not-to-use direction.

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