Skip to main content
Glama
Quantweb3-com

NexusTrader MCP

Official

get_order

Retrieve detailed information for a specific order using its order ID.

Instructions

获取指定订单的详细信息。

Args: oid: 订单 ID

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
oidYes

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 must carry the full behavioral disclosure burden. It only says 'get detailed information'; it does not explicitly state that the operation is read-only, has no side effects, or mention any authentication or rate-limit considerations.

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 short, front-loaded, and contains no filler. The Args line is useful because the schema lacks parameter descriptions, though the overall content is minimal.

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 tool is simple and has an output schema, so return-value documentation is not necessary. However, the description omits usage boundaries and behavioral details that would help differentiate it from sibling order tools.

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 only declares oid as a string with zero description coverage. The description compensates by identifying oid as the order ID, which is the essential semantic information needed to call the tool.

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 states a clear action and resource: fetch detailed information for a specified order. It conveys that this is a single-order lookup rather than a list operation, though it does not explicitly distinguish itself from sibling tools like get_open_orders.

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

Usage Guidelines3/5

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

The phrase 'specified order' implies use when you already have an order ID and need its details, but no explicit when-to-use or when-not-to-use guidance is given, and no alternative tools are mentioned.

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