MCP tool · read 1 credit

cosmos_denom_get

Look up a single Cosmos denom by slug or (base + network). Returns the full payload including supply + socials.

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": "cosmos_denom_get",
    "arguments": {
      "slug": "<slug>",
      "base": "<base>",
      "network": "<network>"
    }
  }
}

Arguments

Name Type Required Description
slug string optional
base string optional The on-chain denom base string, e.g. "uusdc". Requires `network`.
network string optional Network slug (e.g. "mainnet-thorchain"). Required when looking up by `base`.

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.

Get the full Cosmos denom record for slug "ruji".
Look up the denom whose base is "uruji" on the mainnet-thorchain network.
Show me the full payload of denom slug "ruji" — supply, socials, canonical asset link.

Example response

Illustrative shape — actual values vary.

response shape
{
  "slug": "ruji",
  "base": "uruji",
  "symbol": "RUJI",
  "name": "Rujira",
  "display": "ruji",
  "denom_type": "wasm",
  "denom_decimal": 8,
  "canonical_asset": {
    "slug": "ruji",
    "symbol": "RUJI",
    "name": "Rujira"
  },
  "network": {
    "slug": "mainnet-thorchain",
    "name": "THORChain",
    "thorchain_symbol": "THOR"
  },
  "deprecated_at": null,
  "current_supply": "500000000.00000000",
  "current_supply_raw": "50000000000000000",
  "owners_count": 1234,
  "logo_uri": "https://...",
  "description": "Rujira app-layer token (RUJI).",
  "keywords": [
    "rujira",
    "ruji"
  ],
  "socials": {
    "twitter": "rujira_network"
  },
  "rujira_ui_symbol": "RUJI",
  "supply_last_updated_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.