Skip to main content
Glama

fixsim_cancel_order_out

Have FIXSIM send an Order Cancel Request (35=F) for an order it previously sent out with fixsim_send_order.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
apiKeyNo
clOrdIdYesClOrdID of the order to cancel (becomes OrigClOrdID, tag 41)
sessionYes
instanceYes
newClOrdIdNoNew ClOrdID for the cancel request (tag 11); generated if omitted
additionalTagsNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

B3.3/5.0
Behavior2/5

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

Only destructiveHint=false is provided, and the description adds the useful detail that this emits a real FIX 35=F message rather than merely mutating local state. But it does not disclose the effects of cancelling (does it terminate a live simulation session?), whether apiKey/permissions are required, whether the call is idempotent, or what the response indicates. For a state-changing FIX action with near-zero annotation coverage, more disclosure is needed.

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?

A single front-loaded sentence with the action, the wire-level FIX detail, and the prerequisite all packed efficiently; no filler or repetition of structured fields.

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

Completeness2/5

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

For a 6-parameter, output-schema-less FIX mutation tool with only 33% schema coverage, the description omits parameter-level guidance, environment/instance semantics, failure modes, and any indication of what a successful cancel returns. The one sentence covers the intent but leaves too much unaddressed given the tool's complexity.

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

Parameters2/5

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

Schema description coverage is only 33% across 6 parameters, so the description must compensate and does not: it never explains instance, session, apiKey, or additionalTags, and adds nothing beyond the schema's own notes on clOrdId and newClOrdId. The mapping of the cancel request onto OrigClOrdID (tag 41) is documented in the schema, not the description.

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+resource (send an Order Cancel Request, FIX tag 35=F) and scopes it to 'an order it previously sent out with fixsim_send_order', explicitly naming the sibling that produces the target order. An agent can distinguish this from fixsim_send_order and the generic fixsim_act_on_orders without opening a schema.

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 clause 'for an order it previously sent out with fixsim_send_order' implies the precondition (the order must exist and have been sent by this server), but there is no explicit when-not, no mention of the overlapping siblings (fixsim_act_on_orders, sandbox_act_on_order, or the sandbox_* equivalents), and no statement about what happens if the order is already filled or unknown. Usage is implied rather than specified.

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.