Skip to main content
Glama

resolve_name

Resolve a SuiNS name (.sui) into its address, or reverse-look up an address to get its SuiNS name. Keep in mind: SuiNS handles are self-chosen labels, not verified identity.

Instructions

Resolve a SuiNS name (.sui domain) to an address, or reverse-lookup an address to its SuiNS name. At least one of 'name' or 'address' must be provided.

IDENTITY WARNING: a SuiNS name is a self-chosen handle that anyone can buy. It is not identity and it is not verified. Names matching an exchange, a project or a person can be — and are — registered by unrelated parties, including by someone who wants an investigator to draw a particular conclusion. Treat a name as a label the holder picked, never as evidence of who they are, and do not carry it to other platforms as a matching key without independent corroboration.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNoSuiNS name to resolve (e.g. 'example.sui')
addressNoAddress to reverse-lookup to a SuiNS name
networkNoWhich Sui network to run this call against: 'mainnet' (default), 'testnet', or 'devnet'. Set this per-call — different tool calls in the same session can target different networks (e.g. to compare a value on testnet against mainnet).

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.5.0

TDQS

A3.8/5.0
Behavior4/5

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

With no annotations, the description carries the behavioral burden, and it does well by adding a substantial identity warning: SuiNS names are self-chosen, unverified, and potentially misleading. It does not detail response format, error behavior, or explicit read-only status, but for a lookup tool the main behavioral risks are addressed.

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 functional description is front-loaded and unambiguous, and the identity warning is long but substantive in an investigative context. No sentences are wasted, though the warning could be slightly tightened.

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

Completeness3/5

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

The key constraint is stated and the lookup behavior is clear, but with no output schema the agent is left without return-shape or failure-mode information. It also does not specify what happens when both name and address are supplied, which is a plausible edge case.

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?

The schema already documents all three parameters, so the baseline is 3, but the description adds the critical at-least-one requirement and clarifies that name and address are opposite directions of the same lookup. It also gives a concrete .sui example and the identity warning adds meaning to the name 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 opening sentence states the exact operation: resolving a SuiNS name to an address and reverse-looking-up an address to a name. It is specific, anchored to the .sui namespace, and clearly distinct from sibling tools like identify_address or get_object.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description does not explain when to prefer this tool over alternatives, nor does it name any sibling tool or exclusion condition. The 'at least one of name or address' sentence is an invocation constraint rather than usage guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.