MCP tool · read 1 credit

frontend_get

Look up a single frontend app by slug.

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

Arguments

Name Type Required Description
slug string required

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 details on the Rujira Network frontend.
Look up the dapp with slug "thorswap".
Show full details for frontend slug "rujira-network".

Example response

Illustrative shape — actual values vary.

response shape
{
  "slug": "rujira-network",
  "name": "Rujira Network",
  "description": "Rujira app-layer aggregator UI.",
  "web_url": "https://rujira.network",
  "thorchain_swap_url_pattern": "https://rujira.network/swap?from={from_asset}&to={to_asset}",
  "projects_count": 3,
  "wallets_count": 4
}

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.