MCP tool · read 1 credit

canonical_asset_get

Look up a single canonical asset by slug or symbol (case-insensitive on symbol).

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": "canonical_asset_get",
    "arguments": {
      "slug": "<slug>",
      "symbol": "<symbol>"
    }
  }
}

Arguments

Name Type Required Description
slug string optional
symbol 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.

What canonical asset matches the symbol RUJI?
Look up the canonical asset slug "bitcoin".
Get full details for the canonical asset with symbol BTC.

Example response

Illustrative shape — actual values vary.

response shape
{
  "slug": "ruji",
  "symbol": "RUJI",
  "name": "Rujira",
  "description": "Rujira app-layer token (RUJI)."
}

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.