Skip to main content
Glama

DPX — Institutional Cross-Border Settlement

integration.verify

Initiate a $0.01 USDC onboarding handshake for a new DPX integration. Returns the DPX treasury address and payment instructions. The client sends $0.01 USDC on Base mainnet to confirm their wallet is funded and settlement rails are clear. Call integration.status to poll for confirmation. Required for all new integrations before production settlements are enabled.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
apiKeyNoOptional: the DPX API key being registered for this integration. Stored as a hash — never logged in plaintext.
walletAddressYesThe client wallet address (0x...) that will send the $0.01 verification payment.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
statusNoAlways "pending" on creation.
paymentNo
pollingNo
expiresAtNoISO timestamp — verification window closes after 24 hours.
verificationIdNoSession ID — use with integration.status to poll for payment confirmation.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4.2/5.0
Behavior4/5

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

The description explains the handshake flow: client sends $0.01 USDC on Base mainnet, returns treasury address and instructions, and requires status polling. This adds context beyond the annotations, which only indicate the tool is not read-only, idempotent, or destructive. It doesn't disclose failure modes or idempotency consequences, but annotations already cover the safety profile.

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 three clear sentences, front-loaded with the action and purpose, with no filler. Each sentence adds value: initiation, return, and follow-up.

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 covers the initiation step, expected client action, network/currency, return value, and the follow-up polling step. With an output schema present, return values are further specified. It could mention failure/timeout scenarios but is quite complete for a simple initiation tool.

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?

Both parameters are fully described in the schema (100% coverage), so the baseline is 3. The description doesn't add parameter-specific semantics beyond the schema, such as address format or API key handling, which are already covered in the schema descriptions.

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 clearly states it initiates a $0.01 USDC onboarding handshake for a new DPX integration, which is a specific verb+resource+scope. It also distinguishes itself from integration.status by noting that status polling is a separate step.

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 explicitly states this is required for all new integrations before production settlements and directs the user to call integration.status to poll for confirmation. This provides clear when-to-use and a related alternative, though it doesn't explicitly list when-not-to-use scenarios.

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

A3.6/5.0
Disambiguation2/5

Many tools have overlapping purposes, such as multiple stablecoin routing options (route vs stability.stablecoin_route), several compliance pre-checks (flow_check, policy.check, mercury.ach_authorize), and numerous FX/stability tools (oracle.stability, stability.corridor, market.fx, fx.rate). Even with detailed descriptions, the boundaries are subtle and an agent could easily select the wrong tool.

Naming Consistency3/5

The dot-separated namespace convention is mostly consistent and readable, but verb vs noun usage varies (e.g., settlement.execute vs batch_settle vs route). Subscription tools also mix forms (intelligence.subscribe vs intelligence.subscription.get/delete), showing minor inconsistency.

Tool Count1/5

81 tools is an extreme count for a settlement server. Even accounting for the broad 'institutional' scope, the volume overwhelms the core purpose and creates a heavy cognitive load for agents, far beyond the typical 3-15 well-scoped tool set.

Completeness3/5

The core settlement lifecycle is well-covered (quote, execute, track, receipt, batch), but there are notable gaps such as missing policy update/delete and no receipt retrieval (only create). While many tangential domains are over-covered, certain CRUD operations are absent, creating dead ends.