MCP tool ·
read
1 credit
thorchain_pool_get
Look up a single THORChain pool by asset identifier (e.g. "BTC.BTC").
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_pool_get",
"arguments": {
"asset": "<asset>"
}
}
}
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
asset
|
string | required | full_pool_identifier, e.g. "BTC.BTC", "ETH.USDC-0X...". |
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 payload for the BTC.BTC pool on THORChain.
What are the current depths and LP units of the ETH.ETH pool?
Look up THORChain pool BNB.BNB — depths, status, last_added_height.
Example response
Illustrative shape — actual values vary.
response shape
{
"asset": "BTC.BTC",
"status": "Available",
"balance_asset": "4521.23456789",
"balance_rune": "987654.12345678",
"asset_depth_decimal": "4521.23456789",
"rune_depth_decimal": "987654.12345678",
"asset_price": "218.41",
"asset_price_usd": "102345.67",
"lp_units": "12345678901234",
"last_added_height": 19543210,
"status_since_height": 19500000
}
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.