Skip to main content
Glama

Void Trade

void_trade
DestructiveIdempotent

[JOURNAL] Void a mis-logged journal trade by trade_id (wrong asset, duplicate, fat-finger) with an optional reason. Soft-delete: the trade is removed from your stats and the default journal view but retained and recoverable (get_journal status='void' lists voided trades). Voiding a CLOSED trade removes its outcome from your calibration — disclosed in the response. Use this for entries that never should have existed; use close_trade for real trades that ended. Pro.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
reasonNo
trade_idYes

TDQS

A4.9/5.0
Behavior5/5

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

The description adds significant behavioral context beyond annotations: soft-delete semantics (retained and recoverable), removal from stats and default view, and the effect on CLOSED trades (removes outcome from calibration, disclosed in response). It also clarifies the destructiveHint by explaining the soft-delete nature, with no contradiction to idempotentHint or readOnlyHint.

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 yet information-dense, with no filler. The purpose is front-loaded in the first sentence, and each subsequent sentence adds distinct value (soft-delete behavior, closed-trade effect, usage guidance).

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with only 2 simple parameters, no output schema, and rich annotations, the description covers all necessary dimensions: what, when, why, and behavioral outcomes. It even mentions the response disclosure. Nothing critical is missing for an agent to decide and execute the call correctly.

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?

Schema coverage is 0%, so the description compensates by naming trade_id as the identifier and mentioning 'optional reason'. It contextualizes the reason by attaching example misuse cases (wrong asset, duplicate, fat-finger). However, it doesn't elaborate on reason format or trade_id sources, leaving a minor gap for a 2-parameter tool.

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?

The description opens with a specific verb 'Void' and a precise resource: 'a mis-logged journal trade by trade_id'. It enumerates concrete use cases (wrong asset, duplicate, fat-finger), making the tool's scope immediately clear and distinguishing it from siblings like close_trade.

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

Usage Guidelines5/5

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

Explicit guidance is provided: 'Use this for entries that never should have existed; use close_trade for real trades that ended.' This directly tells the agent when to choose void_trade over the alternative close_trade, satisfying the when/when-not criteria.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.1/5.0
Disambiguation4/5

Most tools have distinct purposes, but a few pairs like get_liquidation_map vs get_liquidity_map and multiple signal-fetching tools (get_signal, get_signals_since, list_signals, get_actionable_signals) could be confused without careful description reading. Overall, each tool has a clearly defined role, so the ambiguity is limited.

Naming Consistency4/5

The naming is overwhelmingly consistent: snake_case verb_noun patterns like get_price, list_signals, close_trade, and amend_trade. The exception is 'health' as a plain noun, and a few compound verbs like find_similar_signals, but the overall pattern is strictly followed.

Tool Count2/5

With 52 tools, this is far beyond the typical well-scoped range and falls into the 'too many' category. The broad platform scope justifies many tools, but the sheer number makes the set heavy and harder for an agent to navigate efficiently.

Completeness5/5

The surface covers the full lifecycle: journal management (log, amend, close, void, read), trade vetting (check, plan, rank), signal discovery (list, get, actionable, similar), market data (price, levels, indicators, options), context (macro, liquidity, flows), forensics (manipulation, trust, narrative), and meta (playbook, usage, health). No obvious gaps or dead ends.

Resources