Skip to main content
Glama

Check Wallet KYC Status

check_wallet_kyc
Idempotent

Check and register the Xaman KYC verification status for a wallet operator.

Queries Xaman (the official XRPL wallet app) to see if the wallet holder has completed identity verification. If verified, the status is cached and the wallet immediately unlocks escrows up to $10,000 (vs. the default $3,000 cap for unverified wallets).

Call this after completing KYC in the Xaman app (xaman.app/detect/xapp/xumm/kyc) to register the result with AgentTrust. Safe to call multiple times — returns cached result if already verified.

Returns: wallet_address, kyc_verified (bool), method, and xaman_kyc_url if not yet verified.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
wallet_addressYesThe XRPL wallet address (r...) to check KYC status for.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

A4.2/5.0
Behavior4/5

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

The description explains that the tool queries Xaman, caches the status, and unlocks escrows up to $10,000, which goes beyond the annotations' read-only and idempotent hints. It clearly states side effects (unlocking escrows) and idempotency (returns cached result). This is transparent, though a bit more on error conditions could be added.

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 structured in three sentences covering purpose, usage guidance, and return fields. It is concise and front-loaded with the main action. Each sentence contributes value, though the mention of 'registers' and 'unlocks escrows' could be seen as slightly tangential. Overall, it's tight and well-organized.

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

Completeness5/5

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

For a single-parameter tool, the description provides complete context: what it does, when to use it, side effects, idempotency, and the return fields. It also gives external context (Xaman, escrow limits) that an agent needs to use it correctly. No critical missing information.

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?

The input schema has only one parameter (wallet_address) and the description barely adds beyond the schema's 'r...' hint. Since schema coverage is 100%, the baseline score of 3 applies. The description does not clarify any parameter-specific nuances, so no additional credit.

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 uses the specific verb 'Check and register' with a clear resource (Xaman KYC status) and context (wallet operator). It explicitly distinguishes from siblings like check_wallet_sanctions by focusing on identity verification status. The description is highly specific and unambiguous.

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 provides clear guidance on when to call ('Call this after completing KYC in the Xaman app') and notes safety of repeated calls. However, it does not explicitly contrast with sibling tools like get_wallet_verification_challenge, though the context is sufficient for most agents to select correctly.

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

Most tools target distinct resources and actions clearly. However, list_marketplace_jobs and list_open_jobs both involve browsing jobs and could be confused, and audit_task overlaps somewhat with evaluate_escrow_work in verifying work quality. Descriptions are detailed enough to differentiate with careful reading.

Naming Consistency5/5

All tool names follow a consistent verb_noun snake_case pattern (e.g., create_escrow_vault, list_marketplace_jobs, confirm_wallet_ownership). There are no camelCase or Style deviations, making naming highly predictable.

Tool Count4/5

At 19 tools, the set is slightly heavy but reasonably scoped for a multi-featured platform covering job board, escrow, skills, wallet verification, and pricing. Each tool serves a distinct purpose, though some consolidation could be considered.

Completeness2/5

There is a significant gap: list_marketplace_jobs references a claim_job() function that does not exist in the tool set, breaking the primary workflow for agents to accept available bounties. Additionally, there are no update/delete operations for job postings or skill listings, and no explicit escrow cancellation tool.