Skip to main content
Glama

Get NFT Issuer by Wallet

get_nft_issuer_by_wallet
Read-onlyIdempotent

Look up a registered NFT issuer by their XRPL wallet address.

Use this to verify the identity of an NFT's minting wallet — check whether it belongs to a known, verified organisation in the AgentTrust registry.

Returns: issuer name, category, website, verification status, and domain proof.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
wallet_addressYesThe XRPL wallet address (r...) of the NFT issuer to look up.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare the tool as read-only, idempotent, and non-destructive. The description adds value by stating what is returned (issuer name, category, website, verification status, domain proof), which is not present in annotations. No contradiction with annotations.

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 concise, with a clear single sentence followed by a list of returned fields. It wastes no words and is front-loaded with the core action. Could be slightly improved by being even more terse, but the structure is effective.

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?

Given the low complexity (one parameter, clear purpose), the description is complete. The output schema exists and the description enumerates the returned fields, which reduces the need for detailed return value documentation. The annotations cover safety and behavior well.

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 coverage is 100% with one required parameter. The description reiterates the parameter's purpose (wallet address for lookup) but does not add new semantic details beyond the schema description. Since schema coverage is high and only one parameter, the baseline of 3 is appropriate, but slight improvement because description explains what happens with the parameter.

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 looks up an NFT issuer by wallet address, specifies the resource (XRPL wallet address) and the purpose (verify identity of an NFT's minting wallet against a registry). It distinguishes itself from siblings like lookup_nft_issuer by specifying the lookup key and the registry context.

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 explicitly instructs to use this tool to verify whether an NFT's minting wallet belongs to a known, verified organization. It implies a specific usage scenario but does not explicitly state when not to use it or alternatives; however, the context is clear enough for an agent to infer appropriate use.

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.