Skip to main content
Glama

Verify NFT Ownership

verify_nft_ownership
Read-onlyIdempotent

Verify that a wallet holds an NFT from a specific issuer, optionally matching metadata, to release escrow payments.

Instructions

Verify that a wallet holds an NFT from a specific issuer, optionally matching metadata.

Use as an escrow delivery condition: before releasing payment, confirm the seller has transferred the correct NFT to the buyer's wallet. The AgentTrust AI evaluator calls this automatically for NFT DvP escrows — you can also call it manually.

Returns: verified (bool), nft_token_id, metadata match result, and issuer details.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
issuer_walletYesThe XRPL wallet address (r...) of the NFT's issuer.
wallet_addressYesThe XRPL wallet address (r...) that should hold the NFT.
required_metadataNoOptional JSON string of metadata fields that must be present on the NFT, e.g. '{"type": "licence"}'.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.1/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, openWorldHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is fully covered. The description adds escrow-related usage context and return-field information but no additional side effects or edge-case behavior.

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?

Three concise sections each earn their place: what the tool does, when to use it, and what it returns. There is no filler or repeated information.

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?

With a 100%-covered schema, rich annotations, an output schema, and clear escrow usage guidance, the description is complete enough for an agent to select and call the tool 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% and all three parameters, including required_metadata, are already described in the input schema. The description adds contextual framing but no new parameter-level semantic detail.

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 verb and resource: 'Verify that a wallet holds an NFT from a specific issuer, optionally matching metadata.' This clearly distinguishes it from sibling wallet-verification and issuer-lookup 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 provides explicit usage context: 'Use as an escrow delivery condition: before releasing payment, confirm the seller has transferred the correct NFT to the buyer's wallet.' It also notes automatic invocation by the AgentTrust AI evaluator and manual calling. It does not explicitly list alternative tools or when-not-to-use conditions, 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.