Skip to main content
Glama

payment_decision

Read-onlyIdempotent

"Before your agent pays, call OceanAlt once." Pass the payee address the agent is about to pay; get a machine-executable decision: allow | review | decline, plus verifiable evidence and retry semantics — use it as a gate: if the decision is not "allow", do not pay. On allow/review it also returns a verifiable compliance attestation you can attach to the settlement so the payment carries proof it passed OceanAlt's decision. Free, no API key.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
toYesPayee address the agent is about to pay. EVM: 0x + 40 hex. Tron: T + 33 base58.
networkNoEVM chain for the payee (optional; ignored for Tron).
purposeNoShort purpose/memo (optional).
amountUsdcNoAmount in USDC (optional; recorded, not required for the decision).

TDQS

A4.1/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, openWorldHint, and idempotentHint, so the description's main job is to add context. It does: it discloses the machine-executable decision values, verifiable evidence, retry semantics, and the compliance attestation returned on allow/review. It also notes there is no API key, which is useful operational context.

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?

The description is front-loaded with the critical instruction ('Before your agent pays, call OceanAlt once') and stays focused on the decision output, gate rule, and attestation. It is a little dense in the middle, but every sentence adds useful behavior or context.

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?

With no output schema, the description compensates by explaining the decision values, the gate behavior, and the attestation returned. It mentions retry semantics but does not detail them, and it does not explicitly describe the decline path beyond 'do not pay,' but enough is covered for an agent to invoke it correctly.

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 description coverage is 100%, so the schema already documents all four parameters. The description only echoes that the payee address is the core input and does not add meaningful parameter semantics beyond the schema.

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 names a specific action (call OceanAlt once before paying), a specific resource (the payee address), and an exact decision output (allow | review | decline). Its payment-gate purpose is unmistakable and clearly separates it from the sibling flagging/screening 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?

The description gives an explicit when-to-use instruction: call before the agent pays, and use the result as a gate. It also states the key exclusion behavior — if the decision is not 'allow', do not pay. It does not name alternative tools or describe when not to use this tool, so it stops short of a 5.

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

The three tools have distinct purposes: payment_decision is a payment gate, screen_address is a general risk assessment, and recent_flagged provides a sample list. While payment_decision and screen_address overlap in screening, their outputs and intended use cases are clearly differentiated by the descriptions.

Naming Consistency3/5

All tool names use snake_case and are readable, but they follow different conventions: screen_address is verb_noun, payment_decision is a noun phrase, and recent_flagged is an adjective-participle. The lack of a uniform pattern (e.g., all verbs or all nouns) introduces mild inconsistency.

Tool Count4/5

Three tools is on the lower end but appropriate for a focused AML compliance server. Each tool covers a distinct core function (payment gating, address screening, flagged list retrieval), so the count feels reasonable though not expansive.

Completeness3/5

The set covers the main workflows: screening an address, deciding on a payment, and seeing sample flagged addresses. However, there are gaps such as batch screening, attestation verification, and a way to fetch detailed information on specific flagged addresses, which agents might need for full compliance coverage.

Resources