Skip to main content
Glama
hamzafaiz17

TradeZylo MCP Server

by hamzafaiz17

create_account

Create a new trading account for a funded challenge, live broker, or demo with starting balance, broker, and market type; returns the full account record.

Instructions

[WRITE ACTION] Create a new trading account in TradeZylo (e.g. funded challenge, personal live broker, demo account) with starting balance, broker name, and market type. Returns the full created account record.

Example questions:

  • "Create a new trading account named 'FTMO $100k Phase 1', broker FTMO, market FOREX, starting balance 100000"

  • "Add an account for Binance Futures with $5,000 initial balance"

  • "Create account 'Apex 50k' on FUTURES with $50000 balance and set it active"

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesAccount name or label e.g. "FTMO $100k Phase 1", "Binance Futures", "IC Markets Live"
currencyNo3-letter currency code (default "USD")USD
set_activeNoWhether to set this newly created account as your active trading account immediately (default false)
broker_nameNoBroker or prop-firm name e.g. "FTMO", "IC Markets", "Binance", "Topstep", "Apex"
market_typeYesPrimary market asset class
initial_balanceYesStarting capital balance (e.g. 100000 for $100k, 5000 for $5k)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.7/5.0
Behavior3/5

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

With no annotations, the description must carry the behavioral burden, and it does disclose the mutation nature via '[WRITE ACTION]' and states that the full created record is returned. It does not mention side effects such as whether creating an account affects the active account, permission requirements, or any limits, so disclosure is partial.

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 write-action marker and core purpose are front-loaded, and the example questions add practical value without bloating the text. The examples are somewhat verbose and partly restate the purpose, keeping it short of a 5.

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 six-parameter creation tool with no output schema, the description covers what it does, the fields it consumes, and that it returns the full created record. The remaining gap is behavioral detail (permissions, effect on the active account), which is not covered anywhere.

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 all six parameters are already documented, including enum values, defaults, and constraints. The description restates a few fields (balance, broker, market) but adds no syntax or format meaning beyond the schema, making the baseline 3 appropriate.

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?

States a specific verb and resource ('Create a new trading account in TradeZylo') plus the account varieties it covers (funded challenge, personal live broker, demo), and even names the return value. Against siblings like get_accounts or switch_account, an agent can immediately tell this is the creation tool.

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 three example questions show concrete intended uses, which implies when to reach for this tool. However, there is no explicit when-not guidance and no alternative named (e.g., update_limits or switch_account for modifying an existing account), so routing is left largely to inference.

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