MCP tool · read 1 credit

thorchain_thorname_get

Look up a single THORName from the deving.zone DB by name (e.g. "rj") or slug. This is the cached/synced record — use thornode_node_get for live chain state.

JSON-RPC call

Paste this body into your MCP client's `tools/call` request. The `id` field is the JSON-RPC message correlator (caller-chosen, not a record identifier — set it to anything; the server echoes it back).

tools/call body
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "thorchain_thorname_get",
    "arguments": {
      "name": "<name>",
      "slug": "<slug>"
    }
  }
}

Arguments

Name Type Required Description
name string optional
slug string optional

Copy-paste prompt samples

Drop one of these into Claude Code, n8n, or any MCP client. Your AI agent should pick this tool to answer.

Look up the THORName "rj".
Show me the aliases registered for thorname "rujira".
Who owns the THORName "rujira"?
Get the cached deving.zone record for THORName slug "ninerealms".

Example response

Illustrative shape — actual values vary.

response shape
{
  "name": "Rujira L1 Swaps",
  "slug": "rj",
  "friendly_name": "Rujira L1 Swaps",
  "owner": {
    "address": "thor1abc...xyz",
    "name": null,
    "network": {
      "slug": "mainnet-thorchain",
      "name": "THORChain",
      "thorchain_symbol": "THOR"
    }
  },
  "thor_alias_address": {
    "address": "thor1abc...xyz",
    "name": null,
    "network": {
      "slug": "mainnet-thorchain",
      "name": "THORChain",
      "thorchain_symbol": "THOR"
    }
  },
  "expire_block_height": "23000000",
  "preferred_asset_str": "THOR.RUNE",
  "preferred_asset_swap_threshold_rune": "100",
  "affiliate_collector_rune": "12.34567890",
  "aliases": [
    {
      "chain": "BTC",
      "address": "bc1q...xyz"
    },
    {
      "chain": "ETH",
      "address": "0xabc...123"
    },
    {
      "chain": "THOR",
      "address": "thor1abc...xyz"
    }
  ],
  "last_sync_at": "2026-05-04T10:00:00Z"
}

Possible errors

VALIDATION
Returned when the arguments fail the typed schema.
NOT_FOUND
Returned when the requested resource does not exist in our DB.
RATE_LIMIT
Returned when your token's credit budget is exhausted.