Skip to main content
Glama
alsk1992
by alsk1992

Submit and confirm Strata market making

strata_market_making_submit_and_wait
DestructiveIdempotent

Submit an externally signed transaction with its preparation token and wait for chain-derived confirmation that the market-making product has started or stopped.

Instructions

Submit the exact externally signed quickstart transaction with the unchanged preparation token and wait until Strata's chain-derived maker state confirms the product started or stopped. The token survives stateless HTTP requests and server restarts; the control ID is its default idempotency key.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idempotencyKeyNo
makerControlIdYes
preparationTokenYes
confirmationTimeoutMsNo
signedTransactionBase64Yes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.2.17

TDQS

A3.7/5.0
Behavior4/5

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

The description adds useful behavior beyond annotations: it waits for chain-derived confirmation, the preparation token survives stateless HTTP requests and server restarts, and the control ID is the default idempotency key. These details are consistent with the annotations (readOnlyHint=false, openWorldHint=true, idempotentHint=true, destructiveHint=true), with no contradiction.

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 only two sentences, and both earn their place: the first defines the action and completion condition, the second adds critical idempotency and token-lifecycle behavior. It is compact, front-loaded, and free of filler.

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

Completeness3/5

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

The core workflow is described well enough for a likely happy path, but the tool has 5 parameters, no output schema, and no parameter descriptions, so important gaps remain. In particular, confirmationTimeoutMs semantics, timeout/non-confirmation behavior, and the expected response/return shape are not addressed.

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?

With 0% schema description coverage, the description must compensate for the schema's missing parameter explanations. It clarifies preparationToken ('unchanged', persistent), signedTransactionBase64 ('exact externally signed quickstart transaction'), and makerControlId via 'control ID' as the default idempotency key. It only indirectly implies idempotencyKey and leaves confirmationTimeoutMs entirely unexplained.

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 states a specific action ('Submit') and outcome ('wait until Strata's chain-derived maker state confirms the product started or stopped'). It is clear enough to distinguish from prepare and status tools, though it does not explicitly name or contrast sibling tools.

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 implies sequencing by requiring an 'exact externally signed quickstart transaction' and the 'unchanged preparation token', telling the agent this is meant to follow market_making_prepare. However, it never says when not to use the tool or names alternatives such as market_making_status for checking state, so the guidance remains implied rather than explicit.

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