MCP tool · read 1 credit

blockchain_get

Look up a single blockchain (network) by slug or thorchain_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": "blockchain_get",
    "arguments": {
      "slug": "<slug>",
      "thorchain_symbol": "<thorchain_symbol>"
    }
  }
}

Arguments

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

Tell me everything you know about Ethereum on THORChain.
Look up the chain with thorchain_symbol BSC.
What is the gas token for Avalanche?
Find the blockchain with slug "litecoin".

Example response

Illustrative shape — actual values vary.

response shape
{
  "slug": "ethereum",
  "name": "Ethereum",
  "chain_type": "evm",
  "gas_token_symbol": "ETH",
  "gas_token_decimals": 18,
  "confirmation_time_seconds": 12,
  "bech32_prefix": null,
  "evm_chain_id_hex": "0x1",
  "thorchain_symbol": "ETH",
  "thorchain_connection_status": "live",
  "mayachain_symbol": "ETH",
  "mayachain_connection_status": "live",
  "rujira_code": "eth"
}

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.