Skip to main content
Glama
hamzafaiz17

TradeZylo MCP Server

by hamzafaiz17

resume_account

Resume a paused or frozen trading account in TradeZylo, restoring active status and daily position limits locked at zero.

Instructions

[WRITE ACTION] Resume / reactivate a paused or frozen trading account in TradeZylo. Restores the account to active status, and if risk limits were locked at 0 from a previous freeze, restores daily allowed positions. Returns the updated account record.

Example questions:

  • "Resume my FTMO Challenge account"

  • "Reactivate my Binance Futures account"

  • "Unfreeze my account and let me start trading again"

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
accountNoAccount name or ID to resume. If omitted, resumes the most recently paused account or primary account.
restore_daily_limitNoOptional daily positions limit to set if limits were frozen at 0 (default: 5)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.7/5.0
Behavior4/5

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

No annotations are provided, but the description carries the burden well by labeling this as a WRITE ACTION, explaining that it restores the account to active status, and noting the conditional restoration of daily position limits when they were frozen at 0. It also states that the updated account record is returned, though it does not cover permissions or idempotency.

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 front-loaded with the write-action label and core behavior, then uses a short list of example questions to illustrate usage. The examples slightly lengthen the text but remain useful and do not bury the main purpose.

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 two-parameter write tool with no annotations and no output schema, the description covers the action, its main effects, and the return value adequately. It misses differentiation from the closely related unfreeze_trading sibling, which is a minor but real completeness gap.

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 description coverage is 100%, so both parameters are already documented in the input schema. The description adds contextual meaning for restore_daily_limit by explaining the frozen-limit scenario, but does not add syntax or format details beyond what the schema provides.

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 verb (resume/reactivate) and resource (trading account) with the specific effect of restoring active status. It does not, however, distinguish itself from the sibling tool unfreeze_trading, which appears to cover a very similar action.

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 example questions imply typical use cases such as resuming an FTMO Challenge account or reactivating a Binance Futures account. There is no explicit guidance on when to use this tool versus unfreeze_trading or pause_account, leaving the agent to infer the correct routing.

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