Skip to main content
Glama

Settle an effect whose outcome was unknown

ratchet_resolve_effect

Use ONLY after you have checked the third-party system and now know what really happened to an effect that was left "indeterminate". Record "succeeded" if the action did occur, "failed" if it did not, or "cancelled" to abandon it. Include how you verified it in evidence. Never guess: resolving incorrectly is exactly the duplicate or lost action this service exists to prevent.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultNo
outcomeYes
evidenceNoHow you verified the real outcome. Stored in the audit trail.
effect_idYes

TDQS

A4.4/5.0
Behavior4/5

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

Beyond the annotations, the description warns that incorrect resolution can cause duplicate or lost actions, explains that evidence must come from real verification, and notes that evidence is recorded. Annotations indicate this is not read-only or idempotent, and the description aligns with that by framing it as a consequential state-changing action.

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 a single dense paragraph with no filler. The usage guard is front-loaded, each sentence adds semantic value, and the consequence of misuse is stated in one memorable clause.

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?

The description provides enough operational context to call the tool safely: when to call, what outcome values to use, what evidence to include, and why accuracy matters. It lacks explicit guidance on the optional `result` field and what happens after resolution, but those are secondary to the core settle action.

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 description coverage is only 25%, but the description compensates for the two most important parameters: it explains the `outcome` enum values and requires verification details in `evidence`. `effect_id` is self-evident, while the optional `result` object remains unexplained, which is a minor gap.

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 states a specific action—recording the real outcome of an indeterminate effect—and clearly defines what 'succeeded', 'failed', and 'cancelled' mean. It also narrows the tool's role by requiring prior verification, which sets it apart from generic effect-reporting or checking tools.

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

Usage Guidelines4/5

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

It gives an explicit precondition ('Use ONLY after you have checked the third-party system') and a strong prohibition ('Never guess'), so an agent knows when it is and isn't appropriate to call. It does not name sibling alternatives, but the when/when-not boundary is otherwise clear.

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.2/5.0
Disambiguation4/5

Most tools map to clearly distinct lifecycle phases (begin/report/resolve/heartbeat) and are strongly described, but recall, group_status, and list_effects all deal with looking up past effect or workflow state and could be confused when resuming work. The use-case guidance in the descriptions mostly disambiguates them, so this is a minor rather than systemic issue.

Naming Consistency4/5

All tools share the ratchet_ prefix and snake_case, which gives a strong predictable family feel. However, some names follow verb_noun (begin_effect, resolve_effect) while others are noun phrases (effect_receipts, group_status, prevented_loss), so the pattern is consistent in style but not in grammatical form.

Tool Count5/5

Fifteen tools is at the upper end of the ideal range, but the domain is broad enough to justify every entry: effect lifecycle, lease maintenance, state inspection, circuit breakers, policies, receipts, reconciliation, rollback, and usage. Each tool fills a distinct role with no obvious redundancy.

Completeness5/5

The surface covers the full idempotency and safety lifecycle: authorize, execute, report, heartbeat, recover from indeterminate outcomes, verify with receipts, reconcile vendor truth, roll back multi-step work, and monitor budgets and policies. There are no dead ends or missing operations that would strand an agent in this domain.