Skip to main content
Glama
abuzo

@alexbuzo/dzengi-mcp

by abuzo

dzengi_edit_order

DestructiveIdempotent

Edit an exchange order with immediate financial impact. Use confirm to apply changes once; if the result is unclear, reconcile your account before attempting a retry.

Instructions

Edit an exchange order with a financial side effect. This mutation is sent once; an unknown outcome requires account reconciliation before any retry.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
priceNo
symbolYes
confirmYes
orderIdYes
clientRequestIdYes
expireTimestampNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.1/5.0
Behavior4/5

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

The description adds meaningful behavioral context beyond the annotations: it characterizes the operation as having a 'financial side effect' and warns that an unknown outcome requires account reconciliation before retry. This complements the readOnlyHint=false and destructiveHint=true annotations without contradicting them.

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 two focused sentences with no filler. The core purpose is front-loaded, and the second sentence earns its place by warning about retry behavior and financial reconciliation.

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 mutation tool with six parameters, no output schema, and zero parameter descriptions, the description is not complete enough. It warns about financial side effects, but does not explain what fields like confirm or expireTimestamp do, how orderId relates to clientRequestId, or what the expected outcome/response is.

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

Parameters1/5

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

Schema description coverage is 0% and the description does not explain any of the six parameters: price, symbol, confirm, orderId, clientRequestId, and expireTimestamp. With no schema descriptions and no parameter guidance in the description, the agent must guess the meaning and constraints of fields like confirm and clientRequestId.

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 clearly states a specific action and resource: 'Edit an exchange order with a financial side effect.' The verb and object are unambiguous, but it does not differentiate this from the sibling dzengi_update_order, which appears to be the same operation under a different name.

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

Usage Guidelines2/5

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

The description provides operational cautions about sending the mutation once and reconciling before retry, but it gives no guidance on when to use this tool instead of alternatives such as dzengi_update_order, dzengi_place_order, or dzengi_cancel_order. There is no when-to-use or when-not-to-use advice.

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