Skip to main content
Glama

sandbox_act_on_order

Play the exchange for one order the user sent in: fill (full execution), partial (partial fill), reject, or cancel (cancel the remaining quantity). FIXSIM sends the matching execution report back to the user's engine.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
actionYesfill, partial, reject or cancel
clOrdIdYesClOrdID (tag 11) of the order
sessionIdYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A3.7/5.0
Behavior4/5

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

Annotations only carry destructiveHint=false, so the description does real work: it explains what each action does (fill=full execution, partial=partial fill, cancel=cancels the remaining quantity) and the downstream side effect that FIXSIM emits a matching execution report to the user's engine. It stops short of auth/permission or state-retention details.

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?

Two tight sentences, front-loaded with the action and its variants, then the side effect. No filler, though the in-line enumeration makes the first sentence dense.

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-param single-order simulation tool with no output schema, the description covers the actions and the return-side effect adequately. Minor gap: sessionId semantics and any ordering/idempotency constraints are unaddressed.

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 67%; clOrdId (tag 11) and the action list are already documented in the schema, and the description only lightly enriches them (e.g. 'cancel the remaining quantity'). sessionId remains undocumented in both places, so the description does not fully compensate.

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 and resource: 'Play the exchange for one order the user sent in', and enumerates the four possible outcomes (fill/partial/reject/cancel). The scope 'one order' implicitly contrasts with the plural fixsim_act_on_orders, but no sibling is named explicitly.

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 description conveys the implied context (manually acting on a single inbound order) but never says when to prefer this over sandbox_set_autofill or fixsim_act_on_orders, nor any prerequisites. Usage must be inferred from the action list.

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.