Skip to main content
Glama
Eurobertics

MCP Pionex Management

by Eurobertics

Collect settled earnings

pionex_earn_dual_collect
Destructive

Collect settled Dual Investment earnings into your spot account. Provide base currency, product ID, and client order ID to retrieve completed returns.

Instructions

Collect settled earnings

Collects settled Dual Investment earnings into the user's spot account. Requires Earn permission. Weight: 1.

Only orders in a settled state can be collected.

Example request body:

{
  "base": "BTC",
  "clientDualId": "my-order-001"
}

Example response:

{
  "result": true,
  "data": {
    "clientDualId": "my-order-001"
  },
  "timestamp": 1774959429596
}

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
baseYesBase currency
productIdYesProduct ID
clientDualIdYesClient-assigned dual investment order ID to collect

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.9/5.0
Behavior4/5

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

Annotations already declare destructiveHint=true, non-idempotent, openWorld. The description adds genuine context beyond them: the required Earn permission scope, the settled-state precondition, the weight (1), and a worked response showing the boolean result and echoed clientDualId. It stops short of 5 because it doesn't say what happens on retry of a non-idempotent collect.

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?

Purpose, permission, weight, and precondition are front-loaded before the examples. The request/response JSON is not waste since there is no output schema, but the examples make the entry longer than a single tight paragraph would be.

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 3-required-param mutation with no output schema, the description covers permission, precondition, weight, and return shape via example. The one gap is that the example body drops the required productId, leaving the agent to reconcile it against the schema.

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

Parameters3/5

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

Schema coverage is 100%, so the schema itself defines all three parameters; baseline is 3. The example body is marginally helpful but actually omits the required `productId`, which makes the illustration incomplete rather than clarifying.

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?

States a specific verb+resource: 'Collects settled Dual Investment earnings into the user's spot account.' That is unambiguous against siblings like pionex_earn_dual_get_invests or pionex_earn_dual_revoke_invest, though those siblings are never named, so the agent must infer 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 Guidelines4/5

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

'Only orders in a settled state can be collected' and 'Requires `Earn` permission' give real preconditions for when the call will succeed. It does not name competing tools (e.g. get_invests vs. collect) or state when not to use it, so it stops short of the top tier.

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